summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-10-13 19:05:36 +0400
committerAndrew Dolgov <[email protected]>2009-10-13 19:05:36 +0400
commit37e93d6ccae51c283f3b480195016d749ecab1a5 (patch)
tree16a8490a3a111027cae2cd0f88452d4dd3b73ade /functions.js
parentf4280bdd13e1a1ad54f6ddfafaccdc0e43aa756e (diff)
display special dialog when new articles are available in the current feed instead of reloading it
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js23
1 files changed, 22 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 22490fd1c..fcfddaa52 100644
--- a/functions.js
+++ b/functions.js
@@ -532,7 +532,7 @@ function parse_counters(reply, scheduled_call) {
if (feedctr && feedu && feedr) {
if (feedu.innerHTML != ctr && id == getActiveFeedId() && scheduled_call) {
- viewCurrentFeed();
+ displayNewContentPrompt(id);
}
var row_needs_hl = (ctr > 0 && ctr > parseInt(feedu.innerHTML));
@@ -2194,4 +2194,25 @@ function hotkey_prefix_timeout() {
}
}
+function hideAuxDlg() {
+ try {
+ Element.hide('auxDlg');
+ } catch (e) {
+ exception_error("hideAuxDlg", e);
+ }
+}
+
+function displayNewContentPrompt(id) {
+ try {
+ var msg = __("New articles in &laquo;%s&raquo;. <a href='#' onclick='viewCurrentFeed()'>Click to view</a>.");
+ msg = msg.replace("%s", getFeedName(id));
+
+ $('auxDlg').innerHTML = msg;
+
+ Element.show('auxDlg');
+
+ } catch (e) {
+ exception_error("displayNewContentPrompt", e);
+ }
+}