From 3b21822b768b1954da661fad0830bf3688946e15 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Tue, 28 Jun 2016 14:14:58 -0400 Subject: [PATCH] fixing blank video tab on product page --- js/app.js | 3 ++- js/custom/pageSetup.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index d168ef9..3ae56da 100644 --- a/js/app.js +++ b/js/app.js @@ -97,9 +97,10 @@ $(document).ready(function () { }); var products = $(".type-product").length; - console.debug(products); if(products < 3){ $("#container").css("width", "700px"); } + + $(".html5_video_tab").find('a').html("Video"); }); diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index 4f49f45..c8291c3 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -88,9 +88,10 @@ $(document).ready(function () { }); var products = $(".type-product").length; - console.debug(products); if(products < 3){ $("#container").css("width", "700px"); } + + $(".html5_video_tab").find('a').html("Video"); }); -- 2.17.1