aboutsummaryrefslogtreecommitdiff
path: root/src/content/presenters
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/presenters')
-rw-r--r--src/content/presenters/FindPresenter.ts29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/content/presenters/FindPresenter.ts b/src/content/presenters/FindPresenter.ts
deleted file mode 100644
index b25190c..0000000
--- a/src/content/presenters/FindPresenter.ts
+++ /dev/null
@@ -1,29 +0,0 @@
-export default interface FindPresenter {
- find(keyword: string, backwards: boolean): boolean;
-
- clearSelection(): void;
-}
-
-export class FindPresenterImpl implements FindPresenter {
- find(keyword: string, backwards: boolean): boolean {
- const caseSensitive = false;
- const wrapScan = true;
-
- // NOTE: aWholeWord dows not implemented, and aSearchInFrames does not work
- // because of same origin policy
- const found = window.find(keyword, caseSensitive, backwards, wrapScan);
- if (found) {
- return found;
- }
- this.clearSelection();
-
- return window.find(keyword, caseSensitive, backwards, wrapScan);
- }
-
- clearSelection(): void {
- const sel = window.getSelection();
- if (sel) {
- sel.removeAllRanges();
- }
- }
-}