remove yellow bg in notify

This commit is contained in:
Andrew Dolgov 2005-11-25 05:43:50 +01:00
parent 3547842a4f
commit e93919dd62
1 changed files with 4 additions and 4 deletions

View File

@ -59,10 +59,10 @@ function p_notify(msg) {
if (msg == "") {
nb.innerHTML = " ";
n.style.background = "#ffffff";
// n.style.background = "#ffffff";
} else {
nb.innerHTML = msg;
n.style.background = "#fffff0";
// n.style.background = "#fffff0";
}
}
@ -75,10 +75,10 @@ function notify(msg) {
if (msg == "") {
nb.innerHTML = " ";
n.style.background = "#ffffff";
// n.style.background = "#ffffff";
} else {
nb.innerHTML = msg;
n.style.background = "#fffff0";
// n.style.background = "#fffff0";
}
}