}
}
-function notify_real(msg, doc) {
+function notify_real(msg, doc, no_hide) {
var n = doc.getElementById("notify");
var nb = doc.getElementById("notify_body");
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() {
var container = document.getElementById("BRDET-" + feed_to_expand);
container.innerHTML=xmlhttp.responseText;
container.style.display = "block";
- p_notify("");
+// p_notify("");
} catch (e) {
exception_error("expand_feed_callback", e);
}
checkbox.checked = true;
}
}
- p_notify("");
+// p_notify("");
} catch (e) {
exception_error("feedlist_callback", e);
}
checkbox.checked = true;
}
}
- p_notify("");
+// p_notify("");
}
}
checkbox.checked = true;
}
}
- p_notify("");
+// p_notify("");
}
}
var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
- p_notify("");
+// p_notify("");
}
}
}
}
- p_notify("");
+// p_notify("");
}
}
container.innerHTML=xmlhttp.responseText;
- p_notify("");
+// p_notify("");
}
}
function scheduleFeedUpdate(force) {
if (!daemon_enabled) {
- notify("Updating feeds, please wait.");
+ notify("Updating feeds, please wait.", true);
updateTitle("Updating");
}