summaryrefslogtreecommitdiff
path: root/js/PrefFeedTree.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/PrefFeedTree.js
parent4b492cc93ef2a15a4d5dfe51d38164884464d1a9 (diff)
move some more shared stuff to CommonDialogs, Filters, and Utils
Diffstat (limited to 'js/PrefFeedTree.js')
-rw-r--r--js/PrefFeedTree.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/PrefFeedTree.js b/js/PrefFeedTree.js
index 9d6a9e86c..afa644251 100644
--- a/js/PrefFeedTree.js
+++ b/js/PrefFeedTree.js
@@ -55,13 +55,13 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree"], functio
menu.addChild(new dijit.MenuItem({
label: __("Edit feed"),
onClick: function() {
- editFeed(this.getParent().row_id);
+ CommonDialogs.editFeed(this.getParent().row_id);
}}));
menu.addChild(new dijit.MenuItem({
label: __("Unsubscribe"),
onClick: function() {
- unsubscribeFeed(this.getParent().row_id, this.getParent().item.name);
+ CommonDialogs.unsubscribeFeed(this.getParent().row_id, this.getParent().item.name);
}}));
menu.bindDomNode(tnode.domNode);