mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 02:05:56 +00:00
rework hotkey blocking on INPUT elements
This commit is contained in:
14
functions.js
14
functions.js
@@ -1,4 +1,3 @@
|
||||
var hotkeys_enabled = true;
|
||||
var notify_silent = false;
|
||||
var loading_progress = 0;
|
||||
var sanity_check_done = false;
|
||||
@@ -84,15 +83,6 @@ function format_exception_error(location, e) {
|
||||
return msg;
|
||||
}
|
||||
|
||||
|
||||
function disableHotkeys() {
|
||||
hotkeys_enabled = false;
|
||||
}
|
||||
|
||||
function enableHotkeys() {
|
||||
hotkeys_enabled = true;
|
||||
}
|
||||
|
||||
function param_escape(arg) {
|
||||
if (typeof encodeURIComponent != 'undefined')
|
||||
return encodeURIComponent(arg);
|
||||
@@ -398,8 +388,6 @@ function closeErrorBox() {
|
||||
if (Element.visible("errorBoxShadow")) {
|
||||
Element.hide("dialog_overlay");
|
||||
Element.hide("errorBoxShadow");
|
||||
|
||||
enableHotkeys();
|
||||
}
|
||||
|
||||
return false;
|
||||
@@ -407,8 +395,6 @@ function closeErrorBox() {
|
||||
|
||||
function closeInfoBox(cleanup) {
|
||||
try {
|
||||
enableHotkeys();
|
||||
|
||||
dialog = dijit.byId("infoBox");
|
||||
|
||||
if (dialog) dialog.hide();
|
||||
|
||||
Reference in New Issue
Block a user