diff options
Diffstat (limited to 'StoneIsland/www/js/index.js')
| -rw-r--r-- | StoneIsland/www/js/index.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/StoneIsland/www/js/index.js b/StoneIsland/www/js/index.js new file mode 100644 index 00000000..676dedfc --- /dev/null +++ b/StoneIsland/www/js/index.js @@ -0,0 +1,19 @@ +var app = (function(){ + var app = {} + + app.init = function(){ + app.bind() + } + + app.bind = function(){ + document.addEventListener('deviceready', app.ready, false) + } + + app.ready = function(){ + app.view = null + app.router = new SiteRouter () + } + + app.init() + +})() |
