From: Andrew Dolgov Date: Thu, 25 Aug 2005 13:31:52 +0000 (+0100) Subject: disable hotkey processing while searchbox is focused X-Git-Tag: 20050826-1~9 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=760966c15000eca3700d704b86999b4875f03eb9;p=tt-rss.git disable hotkey processing while searchbox is focused --- diff --git a/backend.php b/backend.php index d29cc280..dd38641a 100644 --- a/backend.php +++ b/backend.php @@ -245,7 +245,9 @@ $feed_last_updated = "Updated: " . $line["last_updated"]; print " - Search: + Search: Reset "; print " diff --git a/functions.js b/functions.js index 0b05ae2e..f33b3970 100644 --- a/functions.js +++ b/functions.js @@ -1,3 +1,13 @@ +var hotkeys_enabled = true; + +function disableHotkeys() { + hotkeys_enabled = false; +} + +function enableHotkeys() { + hotkeys_enabled = true; +} + function notify_callback() { var container = document.getElementById('notify'); if (xmlhttp.readyState == 4) { @@ -56,8 +66,11 @@ function printLockingError() { var seq = ""; function hotkey_handler(e) { + var keycode; + if (!hotkeys_enabled) return; + if (window.event) { keycode = window.event.keyCode; } else if (e) {