mirror of
https://github.com/Astatin3/Polyboard.git
synced 2026-06-09 00:28:07 -06:00
17 lines
335 B
HTML
Executable File
17 lines
335 B
HTML
Executable File
|
|
<main class="container">
|
|
<h4>This is a very simple example module!</h4>
|
|
<button id="testButton" onclick="testFunc()">test!</button>
|
|
</main>
|
|
|
|
<script>
|
|
window.main = ()=>{}
|
|
|
|
function getel(el) {return document.getElementById(el)}
|
|
|
|
function testFunc() {
|
|
window.send('exampleTest', {
|
|
data: 'test!'
|
|
})
|
|
}
|
|
</script> |