revert wrong changes in prefs.js

This commit is contained in:
Andrew Dolgov 2018-12-01 18:05:20 +03:00
parent 18868fb7ac
commit b9984c0ed6
1 changed files with 12 additions and 12 deletions

View File

@ -6,7 +6,7 @@ function notify_callback2(transport, sticky) {
notify_info(transport.responseText, sticky); notify_info(transport.responseText, sticky);
} }
function Feeds.reload() { function updateFeedList() {
const user_search = $("feed_search"); const user_search = $("feed_search");
let search = ""; let search = "";
@ -324,7 +324,7 @@ function removeSelectedFeeds() {
ids: sel_rows.toString() }; ids: sel_rows.toString() };
xhrPost("backend.php", query, () => { xhrPost("backend.php", query, () => {
Feeds.reload(); updateFeedList();
}); });
} }
@ -524,7 +524,7 @@ function editSelectedFeeds() {
xhrPost("backend.php", query, () => { xhrPost("backend.php", query, () => {
dialog.hide(); dialog.hide();
Feeds.reload(); updateFeedList();
}); });
} }
}, },
@ -618,7 +618,7 @@ function selectTab(id, noupdate) {
switch (id) { switch (id) {
case "feedConfig": case "feedConfig":
Feeds.reload(); updateFeedList();
break; break;
case "filterConfig": case "filterConfig":
updateFilterList(); updateFilterList();
@ -782,7 +782,7 @@ function removeCategory(id, item) {
xhrPost("backend.php", query, () => { xhrPost("backend.php", query, () => {
notify(''); notify('');
Feeds.reload(); updateFeedList();
}); });
} }
} }
@ -798,7 +798,7 @@ function removeSelectedCategories() {
ids: sel_rows.toString() }; ids: sel_rows.toString() };
xhrPost("backend.php", query, () => { xhrPost("backend.php", query, () => {
Feeds.reload(); updateFeedList();
}); });
} }
} else { } else {
@ -816,7 +816,7 @@ function createCategory() {
xhrPost("backend.php", { op: "pref-feeds", method: "addCat", cat: title }, () => { xhrPost("backend.php", { op: "pref-feeds", method: "addCat", cat: title }, () => {
notify(''); notify('');
Feeds.reload(); updateFeedList();
}); });
} }
} }
@ -847,7 +847,7 @@ function showInactiveFeeds() {
xhrPost("backend.php", query, () => { xhrPost("backend.php", query, () => {
notify(''); notify('');
dialog.hide(); dialog.hide();
Feeds.reload(); updateFeedList();
}); });
} }
@ -1037,7 +1037,7 @@ function resetFeedOrder() {
notify_progress("Loading, please wait..."); notify_progress("Loading, please wait...");
xhrPost("backend.php", { op: "pref-feeds", method: "feedsortreset" }, () => { xhrPost("backend.php", { op: "pref-feeds", method: "feedsortreset" }, () => {
Feeds.reload(); updateFeedList();
}); });
} }
@ -1045,7 +1045,7 @@ function resetCatOrder() {
notify_progress("Loading, please wait..."); notify_progress("Loading, please wait...");
xhrPost("backend.php", { op: "pref-feeds", method: "catsortreset" }, () => { xhrPost("backend.php", { op: "pref-feeds", method: "catsortreset" }, () => {
Feeds.reload(); updateFeedList();
}); });
} }
@ -1057,7 +1057,7 @@ function editCat(id, item) {
notify_progress("Loading, please wait..."); notify_progress("Loading, please wait...");
xhrPost("backend.php", { op: 'pref-feeds', method: 'renamecat', id: id, title: new_name }, () => { xhrPost("backend.php", { op: 'pref-feeds', method: 'renamecat', id: id, title: new_name }, () => {
Feeds.reload(); updateFeedList();
}); });
} }
} }
@ -1176,7 +1176,7 @@ function batchSubscribe() {
xhrPost("backend.php", this.attr('value'), () => { xhrPost("backend.php", this.attr('value'), () => {
notify(""); notify("");
Feeds.reload(); updateFeedList();
dialog.hide(); dialog.hide();
}); });
} }