Merge pull request #508 from maverick-dev-55/main

rename ma in.js to main.js
This commit is contained in:
Matt Bierner
2021-10-04 12:07:37 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -38,4 +38,4 @@
break;
}
});
}());
}());

View File

@ -168,7 +168,7 @@ class CatCodingPanel {
private _getHtmlForWebview(webview: vscode.Webview, catGifPath: string) {
// Local path to main script run in the webview
const scriptPathOnDisk = vscode.Uri.joinPath(this._extensionUri, 'media', 'ma in.js');
const scriptPathOnDisk = vscode.Uri.joinPath(this._extensionUri, 'media', 'main.js');
// And the uri we use to load this script in the webview
const scriptUri = (scriptPathOnDisk).with({ 'scheme': 'vscode-resource' });