summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-08-11 16:29:34 +0100
committerAndrew Dolgov <[email protected]>2008-08-11 16:29:34 +0100
commit3df4869bbd7b44c1334d2a11857be00a0d911fde (patch)
tree6da33ed71db72dccf81b4a756660ac027ac1857a /prefs.js
parentfe3320d2bdbdbbfeabab48dd6f70da3bf19b77ce (diff)
rescore feeds: hide notify autohide
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/prefs.js b/prefs.js
index d1cfae7b0..7baea6a20 100644
--- a/prefs.js
+++ b/prefs.js
@@ -2131,7 +2131,7 @@ function rescoreSelectedFeeds() {
var ok = confirm(__("Rescore articles in selected feeds?"));
if (ok) {
- notify_progress("Rescoring selected feeds...");
+ notify_progress("Rescoring selected feeds...", true);
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescore&quiet=1&ids="+
param_escape(sel_rows.toString()), true);
@@ -2149,7 +2149,7 @@ function rescore_all_feeds() {
var ok = confirm(__("Rescore all articles? This operation may take a lot of time."));
if (ok) {
- notify_progress("Rescoring feeds...");
+ notify_progress("Rescoring feeds...", true);
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescoreAll&quiet=1", true);
xmlhttp.onreadystatechange=notify_callback;