add find (page-search) hotkey

This commit is contained in:
Paul Frazee 2015-08-27 13:56:18 -05:00
부모 6635d28c55
커밋 e40f79baa8
2개의 변경된 파일12개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -69,6 +69,16 @@ module.exports = function (window) {
label: 'Select All',
accelerator: 'Command+A',
selector: 'selectAll:'
},
{
type: 'separator'
},
{
label: 'Find',
accelerator: 'Command+F',
click: function () {
window.rpc.triggerFind()
}
}
]
},

파일 보기

@ -5,7 +5,8 @@ var pullipc = require('pull-ipc')
var clientApi = {
navigate: 'async',
contextualToggleDevTools: 'async'
contextualToggleDevTools: 'async',
triggerFind: 'async'
}
module.exports = function (window, sbot, params) {