From 4b60d4644c95e838ce5a06da4c8218eaa4bd20bb Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Thu, 31 Dec 2015 11:04:50 -0500 Subject: [PATCH] fixed syntax error --- js/app.js | 2 +- js/custom/upcp.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(); }); } } -- 2.17.1