Files

17 lines
335 B
HTML
Raw Permalink Normal View History

2024-02-20 10:25:34 -07:00
<main class="container">
<h4>This is a very simple example module!</h4>
<button id="testButton" onclick="testFunc()">test!</button>
</main>
2024-02-09 18:52:05 -07:00
<script>
2024-02-20 10:25:34 -07:00
window.main = ()=>{}
2024-02-09 18:52:05 -07:00
function getel(el) {return document.getElementById(el)}
function testFunc() {
2024-02-20 10:25:34 -07:00
window.send('exampleTest', {
2024-02-09 18:52:05 -07:00
data: 'test!'
})
}
</script>