From: Anthony Talarico Date: Thu, 31 Dec 2015 16:04:50 +0000 (-0500) Subject: fixed syntax error X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=4b60d4644c95e838ce5a06da4c8218eaa4bd20bb;p=WP-Themes%2Fmichsci.git fixed syntax error --- diff --git a/js/app.js b/js/app.js index 4be4d71..f4a04a3 100644 --- a/js/app.js +++ b/js/app.js @@ -144,7 +144,7 @@ $(document).ready(function () { $("#categoriesGridView").hide(); $("#categoriesListView").hide() $("#tagBox :checkbox:checked").each(function() { - $("." + $(this).val().show()); + $("." + $(this).val()).show(); }); } } diff --git a/js/custom/upcp.js b/js/custom/upcp.js index 19b7b26..301eb1c 100644 --- a/js/custom/upcp.js +++ b/js/custom/upcp.js @@ -124,7 +124,7 @@ $(document).ready(function () { $("#categoriesGridView").hide(); $("#categoriesListView").hide() $("#tagBox :checkbox:checked").each(function() { - $("." + $(this).val().show()); + $("." + $(this).val()).show(); }); } }