summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-14 23:09:23 +0300
committerAndrew Dolgov <[email protected]>2010-01-14 23:09:23 +0300
commit883fee8df09668f268fc95a724fa01e77f02fbd4 (patch)
treeb327f57f9ec48a14af3ce2bb298dd3c552e36db6 /functions.js
parentef9cab2339d7bfc00bcb3215bdfc82ce88fa306e (diff)
neon updates; make more icons themeable; misc fixes
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/functions.js b/functions.js
index b2bd2a9ef..7a43212dc 100644
--- a/functions.js
+++ b/functions.js
@@ -162,13 +162,13 @@ function notify_real(msg, no_hide, n_type) {
n.className = "notify";
} else if (n_type == 2) {
n.className = "notifyProgress";
- msg = "<img src='images/indicator_white.gif'> " + msg;
+ msg = "<img src='"+getInitParam("sign_progress")+"'> " + msg;
} else if (n_type == 3) {
n.className = "notifyError";
- msg = "<img src='images/sign_excl.gif'> " + msg;
+ msg = "<img src='"+getInitParam("sign_excl")+"'> " + msg;
} else if (n_type == 4) {
n.className = "notifyInfo";
- msg = "<img src='images/sign_info.gif'> " + msg;
+ msg = "<img src='"+getInitParam("sign_info")+"'> " + msg;
}
// msg = "<img src='images/live_com_loading.gif'> " + msg;
@@ -526,7 +526,8 @@ function parse_counters(reply, scheduled_call) {
}
- if (row_needs_hl && getInitParam("theme") != 'neon') {
+ if (row_needs_hl && getInitParam("theme") != 'neon' &&
+ getInitParam("theme") != 'lejla') {
new Effect.Highlight(feedr, {duration: 1, startcolor: "#fff7d5",
queue: { position:'end', scope: 'EFQ-' + id, limit: 1 } } );