summaryrefslogtreecommitdiff
path: root/js/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-21 21:49:52 +0400
committerAndrew Dolgov <[email protected]>2013-03-21 21:49:52 +0400
commita60446bed05d0f0cc1e50150ed2a162fccbf908d (patch)
tree24ffcf022cc7061fe50379ae45798b9a678635c2 /js/functions.js
parent82ac5311549e41893d1430c5090a1d1a925c0c20 (diff)
remove sign_* from init params
Diffstat (limited to 'js/functions.js')
-rw-r--r--js/functions.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/functions.js b/js/functions.js
index 4840bcbe1..db4fedcd5 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -201,13 +201,13 @@ function notify_real(msg, no_hide, n_type) {
n.className = "notify";
} else if (n_type == 2) {
n.className = "notifyProgress";
- msg = "<img src='"+getInitParam("sign_progress")+"'> " + msg;
+ msg = "<img src='images/indicator_white.gif'> " + msg;
} else if (n_type == 3) {
n.className = "notifyError";
- msg = "<img src='"+getInitParam("sign_excl")+"'> " + msg;
+ msg = "<img src='images/sign_excl.svg'> " + msg;
} else if (n_type == 4) {
n.className = "notifyInfo";
- msg = "<img src='"+getInitParam("sign_info")+"'> " + msg;
+ msg = "<img src='images/sign_info.svg'> " + msg;
}
// msg = "<img src='images/live_com_loading.gif'> " + msg;