Plato on Github
Report Home
ampersand/lib/templates/router.js
Maintainability
100.00
Lines of code
13
Difficulty
4.45
Estimated Errors
0.04
Function weight
By Complexity
By SLOC
var Router = require('ampersand-router'); module.exports = Router.extend({ routes: { '': 'home' }, // ------- ROUTE HANDLERS --------- home: function () { // this.trigger('newPage', new HomePage()); } });