diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-06 21:59:08 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-06 21:59:08 +0900 |
commit | 4923cb20c77e7cc84d8ecdf1b12ee6c204701e71 (patch) | |
tree | f34ac1284c88d40b1455d285d6f492438dd13ee9 /src/content | |
parent | 93bd0bc54fd5ce7a2803f2ebc7c834b1b815afda (diff) |
remove redundant checks
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/components/top-content/find.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/content/components/top-content/find.js b/src/content/components/top-content/find.js index 9967d36..4d46d79 100644 --- a/src/content/components/top-content/find.js +++ b/src/content/components/top-content/find.js @@ -1,6 +1,5 @@ import * as findActions from 'content/actions/find'; import messages from 'shared/messages'; -import * as consoleFrames from '../../console-frames'; export default class FindComponent { constructor(win, store) { @@ -32,31 +31,11 @@ export default class FindComponent { next() { let state = this.store.getState().find; - - if (!state.found) { - return consoleFrames.postError( - window.document, - 'Pattern not found: ' + state.keyword); - } - consoleFrames.postInfo( - window.document, - 'Pattern found: ' + state.keyword, - ); return this.store.dispatch(findActions.next(state.keyword, false)); } prev() { let state = this.store.getState().find; - - if (!state.found) { - return consoleFrames.postError( - window.document, - 'Pattern not found: ' + state.keyword); - } - consoleFrames.postInfo( - window.document, - 'Pattern found: ' + state.keyword, - ); return this.store.dispatch(findActions.prev(state.keyword, false)); } } |