mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 09:45:57 +00:00
filter edit dialog: add remove button
This commit is contained in:
26
prefs.js
26
prefs.js
@@ -2156,3 +2156,29 @@ function rescore_all_feeds() {
|
||||
xmlhttp.send(null);
|
||||
}
|
||||
}
|
||||
|
||||
function removeFilter(id, title) {
|
||||
|
||||
if (!xmlhttp_ready(xmlhttp)) {
|
||||
printLockingError();
|
||||
return
|
||||
}
|
||||
|
||||
var msg = __("Remove filter %s?").replace("%s", title);
|
||||
|
||||
var ok = confirm(msg);
|
||||
|
||||
if (ok) {
|
||||
closeInfoBox();
|
||||
|
||||
notify_progress("Removing filter...");
|
||||
|
||||
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
|
||||
param_escape(id), true);
|
||||
xmlhttp.onreadystatechange=filterlist_callback;
|
||||
xmlhttp.send(null);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user