vscode-ext1/src/media/main.js
2022-02-04 23:45:35 +00:00

15 lines
No EOL
331 B
JavaScript

const vscode = acquireVsCodeApi();
window.addEventListener("load", main);
function main() {
const howdyButton = document.getElementById("howdy");
howdyButton.addEventListener("click", handleHowdyClick);
}
function handleHowdyClick() {
vscode.postMessage({
command: "hello",
text: "Hey there partner! 🤠",
});
}