aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/find.ts
diff options
context:
space:
mode:
authorLibravatar Balaji Vijayakumar <kuttibalaji.v6@gmail.com>2022-11-02 19:18:55 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-11-02 20:07:36 +0530
commitc04ae52680a5293a46d506517b12cf4fc3d6909c (patch)
tree2d1e4849f0f80fb7abdbc9c5a2997320dc4f5275 /src/webview/find.ts
parent6.2.1-nightly.36 [skip ci] (diff)
downloadferdium-app-c04ae52680a5293a46d506517b12cf4fc3d6909c.tar.gz
ferdium-app-c04ae52680a5293a46d506517b12cf4fc3d6909c.tar.zst
ferdium-app-c04ae52680a5293a46d506517b12cf4fc3d6909c.zip
refactor: migrate recipe.js to typescript
Diffstat (limited to 'src/webview/find.ts')
-rw-r--r--src/webview/find.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/webview/find.ts b/src/webview/find.ts
index 0665d9670..ead818b07 100644
--- a/src/webview/find.ts
+++ b/src/webview/find.ts
@@ -24,4 +24,8 @@ export default class FindInPage extends ElectronFindInPage {
24 constructor(options = {}) { 24 constructor(options = {}) {
25 super(webContentsShim, options); 25 super(webContentsShim, options);
26 } 26 }
27
28 openFindWindow() {
29 super.openFindWindow();
30 }
27} 31}