mirror of
https://github.com/Astatin3/Polyboard.git
synced 2026-06-08 16:18:03 -06:00
11 lines
269 B
HTML
11 lines
269 B
HTML
<h4>This is a very simple example module!</h4>
|
|
<button id="testButton" onclick="testFunc()">test!</button>
|
|
<script>
|
|
function getel(el) {return document.getElementById(el)}
|
|
|
|
function testFunc() {
|
|
window.sendRaw('test1', {
|
|
data: 'test!'
|
|
})
|
|
}
|
|
</script> |