1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 02:25:55 +00:00

move notify box, make it more visible

This commit is contained in:
Andrew Dolgov
2005-10-16 15:10:14 +01:00
parent 14ba5dccff
commit 828a8ecc9a
6 changed files with 41 additions and 24 deletions

View File

@@ -57,13 +57,15 @@ function p_notify(msg) {
if (!n || !nb) return;
if (msg == "") msg = " ";
nb.innerHTML = msg;
if (msg.length == 0) {
/* if (msg.length == 0) {
n.style.display = "none";
} else {
n.style.display = "block";
}
} */
}
@@ -74,13 +76,15 @@ function notify(msg) {
if (!n || !nb) return;
if (msg == "") msg = " ";
nb.innerHTML = msg;
if (msg.length == 0) {
/* if (msg.length == 0) {
n.style.display = "none";
} else {
n.style.display = "block";
}
} */
}