summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-10-16 15:10:14 +0100
committerAndrew Dolgov <[email protected]>2005-10-16 15:10:14 +0100
commit828a8ecc9a3028b53daf4644ef41479c47fbce20 (patch)
treea2357a398faa7c81eebd84b04766a7faf75b81e0 /functions.js
parent14ba5dccff86f6b8bb2c4efd30df76374b84fc22 (diff)
move notify box, make it more visible
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/functions.js b/functions.js
index cc8a5fbdf..d79490a41 100644
--- a/functions.js
+++ b/functions.js
@@ -57,13 +57,15 @@ function p_notify(msg) {
if (!n || !nb) return;
+ if (msg == "") msg = "&nbsp;";
+
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 = "&nbsp;";
+
nb.innerHTML = msg;
- if (msg.length == 0) {
+/* if (msg.length == 0) {
n.style.display = "none";
} else {
n.style.display = "block";
- }
+ } */
}