Skip to content

Commit

Permalink
Remove not implemented alerts for webview search
Browse files Browse the repository at this point in the history
Fixes #125118

This lets us use the browser's search function on web
  • Loading branch information
mjbvz committed Jul 8, 2021
1 parent a71ebc9 commit f7e8474
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vs/workbench/contrib/webview/browser/webviewElement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -719,14 +719,14 @@ export class IFrameWebview extends Disposable implements Webview {
}

public showFind(): void {
throw new Error('Method not implemented.');
// noop
}

public hideFind(): void {
throw new Error('Method not implemented.');
// noop
}

public runFindAction(previous: boolean): void {
throw new Error('Method not implemented.');
// noop
}
}

0 comments on commit f7e8474

Please sign in to comment.