1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:25:55 +00:00

add edit feed to feed header context menu in grouped mode

This commit is contained in:
Andrew Dolgov
2015-09-07 12:49:49 +03:00
parent b717c65e4e
commit a0dbc45acd

View 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();
}