Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #4831 from darkdh/4830
Browse files Browse the repository at this point in the history
Add "Save Page As" to right click context menu
  • Loading branch information
bsclifton authored Oct 17, 2016
2 parents 0f2798c + a8290a0 commit d421e02
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions js/contextMenus.js
Original file line number Diff line number Diff line change
Expand Up @@ -1027,6 +1027,12 @@ function mainTemplateInit (nodeProps, frame) {
CommonMenu.separatorMenuItem,
addBookmarkMenuItem('bookmarkPage', siteUtil.getDetailFromFrame(frame, siteTags.BOOKMARK), false),
{
label: locale.translation('savePageAs'),
accelerator: 'CmdOrCtrl+S',
click: function (item, focusedWindow) {
CommonMenu.sendToFocusedWindow(focusedWindow, [messages.SHORTCUT_ACTIVE_FRAME_SAVE])
}
}, {
label: locale.translation('find'),
accelerator: 'CmdOrCtrl+F',
click: function (item, focusedWindow) {
Expand Down

0 comments on commit d421e02

Please sign in to comment.