diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-07 21:34:37 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-07 21:34:37 +0900 |
commit | d2a3c6cdd4d6ca564d9a80d281ba14648ffcc6eb (patch) | |
tree | 0de3603c8cffef056584413ef8a5a0dc051b8d8f /src/content/actions/operation.js | |
parent | 72bf3cc2bdcc63864e064a64f7459aba004f4538 (diff) | |
parent | 92f8365be7127c3fa0276b1a6e890571f634622e (diff) |
Merge pull request #355 from ueokande/search-across-pages
Search across pages
Diffstat (limited to 'src/content/actions/operation.js')
-rw-r--r-- | src/content/actions/operation.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/content/actions/operation.js b/src/content/actions/operation.js index 5fd0f48..71b2470 100644 --- a/src/content/actions/operation.js +++ b/src/content/actions/operation.js @@ -62,10 +62,7 @@ const exec = (operation, repeat, settings) => { return focuses.focusInput(); case operations.URLS_YANK: urls.yank(window); - return consoleFrames.postMessage(window.document, { - type: messages.CONSOLE_SHOW_INFO, - text: 'Current url yanked', - }); + return consoleFrames.postInfo(window.document, 'Current url yanked'); case operations.URLS_PASTE: return urls.paste(window, operation.newTab ? operation.newTab : false); default: |