mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 18:35:57 +00:00
feed details enabled for several selected feeds
This commit is contained in:
13
prefs.js
13
prefs.js
@@ -1000,16 +1000,17 @@ function selectedFeedDetails() {
|
||||
return;
|
||||
}
|
||||
|
||||
if (rows.length > 1) {
|
||||
notify("Please select one feed.");
|
||||
return;
|
||||
}
|
||||
// if (rows.length > 1) {
|
||||
// notify("Please select one feed.");
|
||||
// return;
|
||||
// }
|
||||
|
||||
var id = rows[0];
|
||||
// var id = rows[0];
|
||||
|
||||
notify("");
|
||||
|
||||
xmlhttp.open("GET", "backend.php?op=feed-details&id=" + id, true);
|
||||
xmlhttp.open("GET", "backend.php?op=feed-details&id=" +
|
||||
param_escape(rows.toString()), true);
|
||||
xmlhttp.onreadystatechange=infobox_callback;
|
||||
xmlhttp.send(null);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user