mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-10 16:01:33 +00:00
rescore feeds: hide notify autohide
This commit is contained in:
4
prefs.js
4
prefs.js
@@ -2131,7 +2131,7 @@ function rescoreSelectedFeeds() {
|
|||||||
var ok = confirm(__("Rescore articles in selected feeds?"));
|
var ok = confirm(__("Rescore articles in selected feeds?"));
|
||||||
|
|
||||||
if (ok) {
|
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="+
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescore&quiet=1&ids="+
|
||||||
param_escape(sel_rows.toString()), true);
|
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."));
|
var ok = confirm(__("Rescore all articles? This operation may take a lot of time."));
|
||||||
|
|
||||||
if (ok) {
|
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.open("GET", "backend.php?op=pref-feeds&subop=rescoreAll&quiet=1", true);
|
||||||
xmlhttp.onreadystatechange=notify_callback;
|
xmlhttp.onreadystatechange=notify_callback;
|
||||||
|
|||||||
Reference in New Issue
Block a user