summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Legler <alex@a3li.li>2015-12-13 13:31:12 +0100
committerAlex Legler <alex@a3li.li>2015-12-13 13:31:12 +0100
commit532f354d750954cf028fa4fc4db4e081360e458b (patch)
treef033d9d76edb32b5b5ba7c8809511b4936eaf1c2
parentStyle fixes (diff)
downloadfrontend-532f354d750954cf028fa4fc4db4e081360e458b.tar.gz
frontend-532f354d750954cf028fa4fc4db4e081360e458b.tar.bz2
frontend-532f354d750954cf028fa4fc4db4e081360e458b.zip
JS style fixes
-rw-r--r--public/js/quoting.js6
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
+});