1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:25:54 +00:00

move some more shared stuff to CommonDialogs, Filters, and Utils

This commit is contained in:
Andrew Dolgov
2018-12-01 22:39:29 +03:00
parent 4b492cc93e
commit 1e2d4410d3
12 changed files with 502 additions and 495 deletions

View File

@@ -82,7 +82,7 @@ const App = {
const param = getURLParam('methodparam');
window.setTimeout(function () {
editFeed(param)
CommonDialogs.editFeed(param)
}, 100);
}
},
@@ -100,7 +100,7 @@ const App = {
CommonDialogs.addLabel();
return false;
case "create_filter":
quickAddFilter();
Filters.quickAddFilter();
return false;
case "help_dialog":
Utils.helpDialog("main");
@@ -575,7 +575,7 @@ function editSelectedFeed() {
notify("");
editFeed(rows[0], {});
CommonDialogs.editFeed(rows[0], {});
}