summaryrefslogtreecommitdiff
path: root/public/js/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/index.js')
-rw-r--r--public/js/index.js17
1 files changed, 16 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js
index d1af979..6e171fc 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -2,7 +2,22 @@ var app = (function(){
var app = {}
app.init = function(){
- // app.socket =
+ user.init()
+
+ app.router = new SiteRouter ()
+
+ $(window).on("focus", app.focus)
+ $(window).on("blur", app.blur)
+ }
+
+ app.focused = true
+
+ app.focus = function(){
+ app.focused = true
+ }
+
+ app.blur = function(){
+ app.focused = false
}
document.addEventListener('DOMContentLoaded', app.init)