1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/site/client/app/routes.js
2015-06-21 16:34:27 +02:00

21 lines
347 B
JavaScript

var Router = require('director').Router;
var router = new Router();
module.exports = {
init: function(app) {
router.on('/lobby', function() {
app.view = 'lobby';
app.section = 'inner';
});
this.configure();
router.init();
},
configure: function() {
router.configure({
html5history: true
})
}
}