mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-31 01:25:38 -05:00
17 lines
409 B
HTML
17 lines
409 B
HTML
<html>
|
|
<header>
|
|
</header>
|
|
<body>
|
|
<button onclick="count()">Count</button>
|
|
<button onclick="openFlyout()">Open Flyout</button>
|
|
<script>
|
|
function count() {
|
|
parent.postMessage('count', '*');
|
|
}
|
|
function openFlyout() {
|
|
parent.postMessage('openFlyout', '*');
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|