From d5855a5d5b7c16a2c262ad2b98aabe5e8dd161f0 Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Tue, 15 Sep 2015 16:54:38 -0400 Subject: begin writing navigation css --- StoneIsland/www/js/index.js | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) (limited to 'StoneIsland/www/js/index.js') diff --git a/StoneIsland/www/js/index.js b/StoneIsland/www/js/index.js index 9a8e945c..64027d2a 100644 --- a/StoneIsland/www/js/index.js +++ b/StoneIsland/www/js/index.js @@ -2,19 +2,39 @@ var app = (function(){ var app = {} app.init = function(){ + app.archive = new ArchiveView () + app.hub = new HubView () + app.story = new StoryView () + + app.cart = new CartView () + + app.header = new HeaderView () + app.footer = new FooterView () + app.nav = new NavView () + + app.login = new LoginView () + app.intro = new IntroView () + + app.product = new ProductView () + app.collection = new CollectionView () + + app.selector = new Selector () + app.bind() } app.bind = function(){ + if (window.location.href.match("8000")) { app.ready() } document.addEventListener('deviceready', app.ready, false) } app.ready = function(){ app.view = null - app.nav = new NavView () app.router = new SiteRouter () + app.router.route() } - app.init() - + return app })() + +app.init() -- cgit v1.2.3-70-g09d2