]> git.wh0rd.org - tt-rss.git/commitdiff
rescore feeds: hide notify autohide
authorAndrew Dolgov <fox@bah.spb.su>
Mon, 11 Aug 2008 15:29:34 +0000 (16:29 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Mon, 11 Aug 2008 15:29:34 +0000 (16:29 +0100)
prefs.js

index d1cfae7b045052f8dc92bb166dd14df9bd6077ac..7baea6a2048f894d73f540b2c90781da5ca03db8 100644 (file)
--- 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;