mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:35:55 +00:00
disable hotkey processing while searchbox is focused
This commit is contained in:
13
functions.js
13
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) {
|
||||
|
||||
Reference in New Issue
Block a user