summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-18 13:37:52 +0100
committerAndrew Dolgov <[email protected]>2006-05-18 13:37:52 +0100
commit0530ddd88b5314fe0f75a6c81ac317509feea6c6 (patch)
tree958d92b3a2ed28fea153e95cf69518a027521a22 /tt-rss.js
parent4d4200a87b0b5005373411b2a6757324ad9af077 (diff)
notify system improvements
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 3fc7c0eb2..f82bb773c 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -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;
}