aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/index.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/static/index.js b/static/index.js
new file mode 100644
index 0000000..2c8ed38
--- /dev/null
+++ b/static/index.js
@@ -0,0 +1,5 @@
+window.onload = () => {
+ console.log('from js');
+ const kennelWindowEle = document.querySelector('#kennel-window');
+ kennelWindowEle.innerHTML = 'rendered from static/index.js';
+}