1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 21:41:27 +00:00

add shadow to userDlg

This commit is contained in:
Andrew Dolgov
2005-11-27 11:48:07 +01:00
parent b2e9654e83
commit 76332f3c90
4 changed files with 31 additions and 21 deletions

View File

@@ -54,9 +54,10 @@ function dlg_frefresh_callback() {
function dialog_refresh_callback() {
if (xmlhttp.readyState == 4) {
var dlg = document.getElementById("userDlg");
var dlg_s = document.getElementById("userDlgShadow");
dlg.innerHTML = xmlhttp.responseText;
dlg.style.display = "block";
dlg_s.style.display = "block";
}
}
@@ -476,7 +477,7 @@ function displayDlg(id, param) {
}
function closeDlg() {
var dlg = document.getElementById("userDlg");
var dlg = document.getElementById("userDlgShadow");
dlg.style.display = "none";
}