From 532f354d750954cf028fa4fc4db4e081360e458b Mon Sep 17 00:00:00 2001 From: Alex Legler Date: Sun, 13 Dec 2015 13:31:12 +0100 Subject: JS style fixes --- public/js/quoting.js | 6 +++--- 1 file 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 +}); -- cgit v1.2.3-65-gdbad