blob: 26522c4470bbc4f500ab0c1f8abdff0cdf11c65c (
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 ConsoleFramePresenter {
initialize(): void;
blur(): void;
}
export class ConsoleFramePresenterImpl implements ConsoleFramePresenter {
initialize(): void {
const iframe = document.createElement("iframe");
iframe.src = browser.runtime.getURL("build/console.html");
iframe.id = "vimvixen-console-frame";
iframe.className = "vimvixen-console-frame";
document.body.append(iframe);
}
blur(): void {
const ele = document.getElementById("vimvixen-console-frame");
if (!ele) {
throw new Error("console frame not created");
}
ele.blur();
}
}
|