disable hotkeys when userDlg is shown

This commit is contained in:
Andrew Dolgov 2005-12-18 17:46:03 +01:00
parent 09165533b2
commit ccedfdddec

View File

@ -511,11 +511,13 @@ function displayDlg(id, param) {
xmlhttp.onreadystatechange=dlg_display_callback; xmlhttp.onreadystatechange=dlg_display_callback;
xmlhttp.send(null); xmlhttp.send(null);
disableHotkeys();
} }
function closeDlg() { function closeDlg() {
var dlg = document.getElementById("userDlgShadow"); var dlg = document.getElementById("userDlgShadow");
dlg.style.display = "none"; dlg.style.display = "none";
enableHotkeys();
} }
function qfdDelete(feed_id) { function qfdDelete(feed_id) {