1
0
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:
Andrew Dolgov
2010-11-21 13:52:01 +03:00
parent a304240454
commit 4aeafea283
5 changed files with 2 additions and 43 deletions

View File

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