summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-01 22:39:29 +0300
committerAndrew Dolgov <[email protected]>2018-12-01 22:39:29 +0300
commit1e2d4410d320fcee644add76293f229741a163cb (patch)
tree11228eaba3165f1ef5503c7ffa23e577d1fc886b /js/prefs.js
parent4b492cc93ef2a15a4d5dfe51d38164884464d1a9 (diff)
move some more shared stuff to CommonDialogs, Filters, and Utils
Diffstat (limited to 'js/prefs.js')
-rwxr-xr-xjs/prefs.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/prefs.js b/js/prefs.js
index 67be0b474..0d35355d2 100755
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -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], {});
}