diff options
-rw-r--r-- | public/js/quoting.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/js/quoting.js b/public/js/quoting.js index 84be70f..0a92a55 100644 --- a/public/js/quoting.js +++ b/public/js/quoting.js @@ -5,7 +5,7 @@ $(function() { return; } - if ($('.ag-quote').size() == 0) { + if ($('.ag-quote').size() === 0) { return; } @@ -25,6 +25,6 @@ $(function() { $('.ag-quote').each(function(index) { $(this).toggleClass('ag-quote-hidden'); }); - }) + }); }); -});
\ No newline at end of file +}); |