mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 09:35:37 -05:00
20 lines
652 B
HTML
20 lines
652 B
HTML
<!--
|
|
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
-->
|
|
<html>
|
|
<header>
|
|
</header>
|
|
<body>
|
|
<button onclick="count()">Count</button>
|
|
<script>
|
|
const vscode = acquireVsCodeApi();
|
|
function count() {
|
|
vscode.postMessage('count', '*');
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|