Fix eslint warnings.

This commit is contained in:
evazion
2018-08-04 14:36:39 -05:00
parent 752557e813
commit f72b32b27b
27 changed files with 149 additions and 155 deletions

View File

@@ -14,7 +14,7 @@ Shortcuts.initialize = function() {
if ($("#image").length) { // post page or bookmarklet upload page
Utility.keydown("shift+e", "edit_dialog", function(e) {
if (Utility.meta("current-user-id") == "") { // anonymous
if (Utility.meta("current-user-id") === "") { // anonymous
return;
}
@@ -56,4 +56,4 @@ $(document).ready(function() {
Shortcuts.initialize();
});
export default Shortcuts
export default Shortcuts