unclean SPARC

This commit is contained in:
STEINNI
2025-08-27 07:03:09 +00:00
commit f308460931
430 changed files with 54426 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
class TestView extends EICDomContent {
constructor() { super(); }
DOMContentLoaded() {
ui.eicfy(this.el)
let form = new Form(this.find('.form'));
let output = this.find('.output')
this.find('.generate').addEventListener('click', event => { output.value = JSON.stringify(form.value) });
}
}
app.registerClass('TestView',TestView);