]> git.wh0rd.org - tt-rss.git/commitdiff
add edit feed to feed header context menu in grouped mode
authorAndrew Dolgov <noreply@madoka.volgo-balt.ru>
Mon, 7 Sep 2015 09:49:49 +0000 (12:49 +0300)
committerAndrew Dolgov <noreply@madoka.volgo-balt.ru>
Mon, 7 Sep 2015 09:49:49 +0000 (12:49 +0300)
js/viewfeed.js

index c079586a241d9fc1d053039abdd5d6f9c43a516d..79f4e9966027686a7e2696ff7e4a7ae710822d5c 100644 (file)
@@ -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();
 
                }