summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
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 = " ";
+
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";
- }
+ } */
}