summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-07-26 22:08:33 +0400
committerAndrew Dolgov <[email protected]>2014-07-26 22:08:33 +0400
commit760183e37dbea8c0ab21db73446c294fd63e9a5b (patch)
treeca51dd2927b3570bbbde45e94f85e244a7e6f208 /js
parent1d6191ee0a115a7029bfe4983f6ecb04c6f5dd6c (diff)
minor spacer/whiteBox appearance tweaks
Diffstat (limited to 'js')
-rw-r--r--js/viewfeed.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/js/viewfeed.js b/js/viewfeed.js
index 14c9217c1..c319a8ed0 100644
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -180,7 +180,8 @@ function headlines_callback2(transport, offset, background, infscroll_req) {
var hsp = $("headlines-spacer");
- if (hsp) hsp.innerHTML = "Click to open next unread feed.";
+ if (hsp) hsp.innerHTML = "<a href='#' onclick='openNextUnreadFeed()'>" +
+ __("Click to open next unread feed.") + "</a>";
}
}
@@ -1311,8 +1312,8 @@ function headlines_scroll_handler(e) {
((e.scrollTop + e.offsetHeight) / e.scrollHeight >= 0.7))) {
if (hsp)
- hsp.innerHTML = "<img src='images/indicator_tiny.gif'> " +
- __("Loading, please wait...");
+ hsp.innerHTML = "<span class='loading'><img src='images/indicator_tiny.gif'> " +
+ __("Loading, please wait...") + "</span>";
loadMoreHeadlines();
return;