summaryrefslogtreecommitdiff
path: root/public/js/index.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-08-04 10:55:51 -0400
committerJules Laplace <jules@okfoc.us>2015-08-04 10:55:51 -0400
commit1a882d4adf6307dfbd764ae6aaf1a62a724851f1 (patch)
tree481aef83b95f951fd93a111c48b350cd3b6d3886 /public/js/index.js
parent460dadfdd2c3d91d3759542990702362b85703d3 (diff)
rearrange stuff and stub in chat
Diffstat (limited to 'public/js/index.js')
-rw-r--r--public/js/index.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/public/js/index.js b/public/js/index.js
new file mode 100644
index 0000000..d1af979
--- /dev/null
+++ b/public/js/index.js
@@ -0,0 +1,9 @@
+var app = (function(){
+ var app = {}
+
+ app.init = function(){
+ // app.socket =
+ }
+
+ document.addEventListener('DOMContentLoaded', app.init)
+})()