diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-06-17 12:05:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-17 12:05:05 +0900 |
commit | 7cae7302bd39a7963b765cd3defd05a093c104a6 (patch) | |
tree | b0c141f40007207c0fa87aefe9ebd28b4633ad10 /src/content/actions/find.js | |
parent | cf7d482446727cd7b8a9a0bf2cd3038cc85fb225 (diff) | |
parent | 45a65b38db55e358d58e9c608a8088d7cc157939 (diff) |
Merge pull request #415 from ueokande/pattern-not-found-null
Fix no previous search keywords
Diffstat (limited to 'src/content/actions/find.js')
-rw-r--r-- | src/content/actions/find.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/content/actions/find.js b/src/content/actions/find.js index c7345cc..249a8a9 100644 --- a/src/content/actions/find.js +++ b/src/content/actions/find.js @@ -22,6 +22,12 @@ const postPatternFound = (pattern) => { ); }; +const postNoPrevious = () => { + return consoleFrames.postError( + window.document, + 'No previous search keywords'); +}; + const find = (string, backwards) => { let caseSensitive = false; let wrapScan = true; @@ -50,6 +56,9 @@ const findNext = (currentKeyword, reset, backwards) => { } return promise.then((keyword) => { + if (!keyword) { + return postNoPrevious(); + } let found = find(keyword, backwards); if (!found) { window.getSelection().removeAllRanges(); |