diff options
Diffstat (limited to 'ext/bg/js/popup.js')
| -rw-r--r-- | ext/bg/js/popup.js | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/ext/bg/js/popup.js b/ext/bg/js/popup.js index 8577dd96..01994827 100644 --- a/ext/bg/js/popup.js +++ b/ext/bg/js/popup.js @@ -18,6 +18,8 @@  $(document).ready(() => { +    const commandExec = command => instYomi().onCommand(command); +      $('#open-search').click(() => commandExec('search'));      $('#open-options').click(() => commandExec('options'));      $('#open-help').click(() => commandExec('help')); |