From 828a8ecc9a3028b53daf4644ef41479c47fbce20 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 16 Oct 2005 15:10:14 +0100 Subject: move notify box, make it more visible --- functions.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'functions.js') 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 = " "; + 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"; - } + } */ } -- cgit v1.2.3