diff options
author | Alex Legler <alex@a3li.li> | 2015-12-13 13:31:12 +0100 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2015-12-13 13:31:12 +0100 |
commit | 532f354d750954cf028fa4fc4db4e081360e458b (patch) | |
tree | f033d9d76edb32b5b5ba7c8809511b4936eaf1c2 | |
parent | Style fixes (diff) | |
download | frontend-532f354d750954cf028fa4fc4db4e081360e458b.tar.gz frontend-532f354d750954cf028fa4fc4db4e081360e458b.tar.bz2 frontend-532f354d750954cf028fa4fc4db4e081360e458b.zip |
JS style fixes
-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 +}); |