weview -> webview

This commit is contained in:
Matt Bierner
2018-04-13 17:25:01 -07:00
parent 06c070690e
commit 71c09a6c4c
3 changed files with 7 additions and 7 deletions

View File

@@ -242,7 +242,7 @@ export class ExtHostWebviews implements ExtHostWebviewsShape {
}
}
$onDidChangeWeviewViewState(handle: WebviewHandle, active: boolean, position: Position): void {
$onDidChangeWebviewViewState(handle: WebviewHandle, active: boolean, position: Position): void {
const panel = this.getWebviewPanel(handle);
if (panel) {
const viewColumn = typeConverters.toViewColumn(position);
@@ -254,7 +254,7 @@ export class ExtHostWebviews implements ExtHostWebviewsShape {
}
}
$onDidDisposeWeview(handle: WebviewHandle): Thenable<void> {
$onDidDisposeWebview(handle: WebviewHandle): Thenable<void> {
const panel = this.getWebviewPanel(handle);
if (panel) {
panel.dispose();