1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 02:45:56 +00:00

editFeedDlg: fix hotkey disabling bug

This commit is contained in:
Andrew Dolgov
2008-02-20 13:45:57 +01:00
parent 0b6cffa868
commit c67d2990c7
2 changed files with 7 additions and 4 deletions

View File

@@ -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;