diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-06 21:37:12 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-06 21:56:54 +0900 |
commit | 93bd0bc54fd5ce7a2803f2ebc7c834b1b815afda (patch) | |
tree | 18c0bd58d1f3ce268f36e96ead9239182e79ddd7 /src/content/components | |
parent | 72bf3cc2bdcc63864e064a64f7459aba004f4538 (diff) |
show message on find
Diffstat (limited to 'src/content/components')
-rw-r--r-- | src/content/components/top-content/find.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/content/components/top-content/find.js b/src/content/components/top-content/find.js index bccf040..9967d36 100644 --- a/src/content/components/top-content/find.js +++ b/src/content/components/top-content/find.js @@ -38,6 +38,10 @@ export default class FindComponent { window.document, 'Pattern not found: ' + state.keyword); } + consoleFrames.postInfo( + window.document, + 'Pattern found: ' + state.keyword, + ); return this.store.dispatch(findActions.next(state.keyword, false)); } @@ -49,6 +53,10 @@ export default class FindComponent { window.document, 'Pattern not found: ' + state.keyword); } + consoleFrames.postInfo( + window.document, + 'Pattern found: ' + state.keyword, + ); return this.store.dispatch(findActions.prev(state.keyword, false)); } } |