summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-18 17:46:03 +0100
committerAndrew Dolgov <[email protected]>2005-12-18 17:46:03 +0100
commitccedfdddec886d7725504d19e7e716d0f7feb569 (patch)
tree47f282ae3b087396a23d8b048cd3b7c7901ee223 /tt-rss.js
parent09165533b220e5e55dba04fac99fcf4aadc42cd9 (diff)
disable hotkeys when userDlg is shown
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index dee5e8546..6178ea3d4 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -511,11 +511,13 @@ function displayDlg(id, param) {
xmlhttp.onreadystatechange=dlg_display_callback;
xmlhttp.send(null);
+ disableHotkeys();
}
function closeDlg() {
var dlg = document.getElementById("userDlgShadow");
dlg.style.display = "none";
+ enableHotkeys();
}
function qfdDelete(feed_id) {