summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-09-07 12:49:49 +0300
committerAndrew Dolgov <[email protected]>2015-09-07 12:49:49 +0300
commita0dbc45acd96c82b55927ce6b0dd8253811c9e17 (patch)
treeb407cd1109c16891f31cc2c01f5927cfffc2c6b5 /js
parentb717c65e4e1b636370cf1a9df613a46e272d6f6d (diff)
add edit feed to feed header context menu in grouped mode
Diffstat (limited to 'js')
-rw-r--r--js/viewfeed.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/js/viewfeed.js b/js/viewfeed.js
index c079586a2..79f4e9966 100644
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -2185,6 +2185,12 @@ function initHeadlinesMenu() {
catchupFeedInGroup(menu.callerRowId);
}}));
+ menu.addChild(new dijit.MenuItem({
+ label: __("Edit feed"),
+ onClick: function(event) {
+ editFeed(menu.callerRowId);
+ }}));
+
menu.startup();
}