summaryrefslogtreecommitdiff
path: root/feedlist.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 /feedlist.js
parentef9cab2339d7bfc00bcb3215bdfc82ce88fa306e (diff)
neon updates; make more icons themeable; misc fixes
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/feedlist.js b/feedlist.js
index 48385664c..19721686f 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -331,7 +331,7 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
if (!img.src.match("indicator_white")) {
img.alt = img.src;
- img.src = 'images/indicator_white.gif';
+ img.src = getInitParam("sign_progress");
}
} else {
@@ -339,7 +339,7 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
if (!$('FLL-' + feed)) {
var ll = document.createElement('img');
- ll.src = 'images/indicator_tiny.gif';
+ ll.src = getInitParam("sign_progress");
ll.className = 'hlLoading';
ll.id = 'FLL-' + feed;
@@ -467,7 +467,7 @@ function feedlist_init() {
}
}
- if (getInitParam("theme") == "" || getInitParam("theme") == "darkroom" ||
+ if (getInitParam("theme") == "" || getInitParam("theme") == "lejla" ||
getInitParam("theme") == "neon") {
setTimeout("hide_footer()", 5000);
}