summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-18 13:32:28 +0100
committerAndrew Dolgov <[email protected]>2006-05-18 13:32:28 +0100
commit4d4200a87b0b5005373411b2a6757324ad9af077 (patch)
tree37364f1b43ac8e9a1438c1a7991f2fe4fd8594ac /functions.js
parenteff4997c1faa0c9bcdd72ff50a9ba2353b75f743 (diff)
make updating feeds notify persistent, remove p_notify calls
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/functions.js b/functions.js
index bcbc93b36..1914855d6 100644
--- a/functions.js
+++ b/functions.js
@@ -93,7 +93,7 @@ function hide_notify() {
}
}
-function notify_real(msg, doc) {
+function notify_real(msg, doc, no_hide) {
var n = doc.getElementById("notify");
var nb = doc.getElementById("notify_body");
@@ -115,15 +115,17 @@ function notify_real(msg, doc) {
notify_last_doc = doc;
notify_opacity = 1;
- notify_hide_timerid = window.setTimeout(hide_notify, 3000);
+ if (!no_hide) {
+ notify_hide_timerid = window.setTimeout(hide_notify, 3000);
+ }
}
-function p_notify(msg) {
- notify_real(msg, parent.document);
+function p_notify(msg, no_hide) {
+ notify_real(msg, parent.document, no_hide);
}
-function notify(msg) {
- notify_real(msg, document);
+function notify(msg, no_hide) {
+ notify_real(msg, document, no_hide);
}
function printLockingError() {