From 70c0a8c2e020f30e1b9f5cd8de18e01c80e0a1c6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 9 Feb 2017 23:19:26 +0300 Subject: pass several image files used in notify messages to frontend as base64 to prevent broken error messages in case network connection is down. also, update some close buttons to show correct cursor. --- js/functions.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'js/functions.js') diff --git a/js/functions.js b/js/functions.js index 6ba0922aa..e29a834c9 100755 --- a/js/functions.js +++ b/js/functions.js @@ -212,15 +212,15 @@ function notify_real(msg, no_hide, n_type) { msg = " " + __(msg) + ""; if (n_type == 2) { - msg = "" + msg; + msg = "" + msg; no_hide = true; } else if (n_type == 3) { - msg = "" + msg; + msg = "" + msg; } else if (n_type == 4) { - msg = "" + msg; + msg = "" + msg; } - msg += " "; n.innerHTML = msg; -- cgit v1.2.3-54-g00ecf