From cee8f42f8ca054a12abbb4142d18b3f07c22e16b Mon Sep 17 00:00:00 2001 From: tDidierjean Date: Wed, 2 May 2012 09:39:30 +0000 Subject: [PATCH] // fix JS error on IE8 --- js/productTabsManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/productTabsManager.js b/js/productTabsManager.js index b854be4fe..32579cb50 100644 --- a/js/productTabsManager.js +++ b/js/productTabsManager.js @@ -53,7 +53,7 @@ function ProductTabsManager(){ */ this.onLoad = function (tab_name, callback) { - container = $('#product-tab-content-' + tab_name); + var container = $('#product-tab-content-' + tab_name); // Some containers are not loaded depending on the shop configuration if (container.length === 0) return;