summaryrefslogtreecommitdiff
path: root/themes/test/public/js
diff options
context:
space:
mode:
Diffstat (limited to 'themes/test/public/js')
-rw-r--r--themes/test/public/js/app.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/test/public/js/app.js b/themes/test/public/js/app.js
new file mode 100644
index 0000000..1e710e9
--- /dev/null
+++ b/themes/test/public/js/app.js
@@ -0,0 +1,15 @@
+var app = (function(){
+ var app = {}
+ var cms
+
+ app.init = function(){
+ cms = app.cms = new OKCMS ({ ready: app.ready })
+ }
+ app.ready = function(){
+ console.log ("READY")
+ }
+
+ return app
+})()
+
+window.addEventListener("DOMContentLoaded", app.init) \ No newline at end of file