diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-09-14 15:38:59 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-09-14 15:38:59 -0400 |
| commit | 6e5cc9505e8b577228bfbe87729174c105a747fd (patch) | |
| tree | 7c6011fb7c169e152f1176af90598753d79ab086 /StoneIsland/www/js/lib/router.js | |
| parent | 45cb294f9adb1532e0b88f1c236c28dab18a4efe (diff) | |
stub views
Diffstat (limited to 'StoneIsland/www/js/lib/router.js')
| -rw-r--r-- | StoneIsland/www/js/lib/router.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/StoneIsland/www/js/lib/router.js b/StoneIsland/www/js/lib/router.js index b1c33cb7..28793fe5 100644 --- a/StoneIsland/www/js/lib/router.js +++ b/StoneIsland/www/js/lib/router.js @@ -3,7 +3,14 @@ var SiteRouter = Router.extend({ el: "body", routes: { - "/": 'login', - } + "/": 'index', + }, + + initialize: function(){ + this.route() + }, + + index: function(){ + }, })
\ No newline at end of file |
