1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-19 18:21:28 +00:00

notify system improvements

This commit is contained in:
Andrew Dolgov
2006-05-18 13:37:52 +01:00
parent 4d4200a87b
commit 0530ddd88b
2 changed files with 18 additions and 8 deletions

View File

@@ -92,14 +92,14 @@ function refetch_callback() {
last_refetch = date.getTime() / 1000;
if (!xmlhttp.responseXML) {
notify("refetch_callback: backend did not return valid XML");
notify("refetch_callback: backend did not return valid XML", true, true);
return;
}
var reply = xmlhttp.responseXML.firstChild;
if (!reply) {
notify("refetch_callback: backend did not return expected XML object");
notify("refetch_callback: backend did not return expected XML object", true, true);
updateTitle("");
return;
}
@@ -490,7 +490,7 @@ function quickMenuGo(opid) {
var actid = getActiveFeedId();
if (!actid) {
notify("Please select some feed first.");
alert("Please select some feed first.");
return;
}