summaryrefslogtreecommitdiff
path: root/js/App.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-15 15:21:25 +0300
committerAndrew Dolgov <[email protected]>2021-02-15 15:21:41 +0300
commit6b006a18e7efef814fa7a59102c85299acb0a0a4 (patch)
tree4eab0bed23cf8dce8487e102c74682b1e71993d0 /js/App.js
parentecb36b6354cf693f8120884fdb9ef4068cb1d03f (diff)
subscribe to feed: use client dialog
Diffstat (limited to 'js/App.js')
-rw-r--r--js/App.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/App.js b/js/App.js
index 3a31438c5..5c2d7726c 100644
--- a/js/App.js
+++ b/js/App.js
@@ -838,7 +838,7 @@ const App = {
if (this.is_prefs) {
this.hotkey_actions["feed_subscribe"] = () => {
- CommonDialogs.quickAddFeed();
+ CommonDialogs.subscribeToFeed();
};
this.hotkey_actions["create_label"] = () => {
@@ -994,7 +994,7 @@ const App = {
Feeds.toggleUnread();
};
this.hotkey_actions["feed_subscribe"] = () => {
- CommonDialogs.quickAddFeed();
+ CommonDialogs.subscribeToFeed();
};
this.hotkey_actions["feed_debug_update"] = () => {
if (!Feeds.activeIsCat() && parseInt(Feeds.getActive()) > 0) {
@@ -1139,7 +1139,7 @@ const App = {
Feeds.search();
break;
case "qmcAddFeed":
- CommonDialogs.quickAddFeed();
+ CommonDialogs.subscribeToFeed();
break;
case "qmcDigest":
window.location.href = "backend.php?op=digest";