summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-02-20 13:45:57 +0100
committerAndrew Dolgov <[email protected]>2008-02-20 13:45:57 +0100
commitc67d2990c7a54a6379fe2a134f947555461109bc (patch)
tree90f94309417d9ac6d3c4c0a8f537b1a1ffcb005e /functions.js
parent0b6cffa868eba2c308454c6042b4da1f605c7145 (diff)
editFeedDlg: fix hotkey disabling bug
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 3d3b34b38..b41cd73ab 100644
--- a/functions.js
+++ b/functions.js
@@ -209,7 +209,10 @@ function hotkey_handler(e) {
}
- if (!hotkeys_enabled) return;
+ if (!hotkeys_enabled) {
+ debug("hotkeys disabled");
+ return;
+ }
if (window.event) {
keycode = window.event.keyCode;