From 678e7b9ab3534909c093bf14dd2227d7a643b7d2 Mon Sep 17 00:00:00 2001 From: tDidierjean Date: Fri, 6 Apr 2012 08:34:51 +0000 Subject: [PATCH] [-] BO : fix JS exception when advanced stock management is inactive git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14515 b9a71923-0436-4b27-9f14-aed3839534dd --- js/productTabsManager.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/productTabsManager.js b/js/productTabsManager.js index b3b2d7846..b854be4fe 100644 --- a/js/productTabsManager.js +++ b/js/productTabsManager.js @@ -54,8 +54,9 @@ function ProductTabsManager(){ this.onLoad = function (tab_name, callback) { container = $('#product-tab-content-' + tab_name); + // Some containers are not loaded depending on the shop configuration if (container.length === 0) - throw 'Could not find container for tab name: ' + tab_name; + return; // onReady() is always called after the dom has been created for the tab (similar to $(document).ready()) if (container.hasClass('not-loaded'))