mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
12 lines
301 B
JavaScript
12 lines
301 B
JavaScript
(function() {
|
|
const vscode = acquireVsCodeApi();
|
|
const body = document.querySelector('body');
|
|
|
|
body.addEventListener('click', event => {
|
|
if (event.target.nodeName !== 'BUTTON') {
|
|
return;
|
|
}
|
|
|
|
vscode.postMessage(event.target.nextElementSibling.textContent);
|
|
});
|
|
}()); |