blob: 569f161d0cedf2c67c0859b8903ec07b089d345a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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 = false;
// NOTE: aWholeWord dows not implemented, and aSearchInFrames does not work
// because of same origin policy
return window.find(keyword, caseSensitive, backwards, wrapScan);
}
clearSelection(): void {
const sel = window.getSelection();
if (sel) {
sel.removeAllRanges();
}
}
}
|