Blame view
app/scripts/routes.js
341 Bytes
|
c87bc1f33
|
1 2 3 4 5 |
define([], function(){
'use strict';
return {
defaultRoutePaths: '/',
routes: {
|
|
c87bc1f33
|
6 7 8 9 10 11 12 13 14 15 |
/* add more routes */
'/': {
templateUrl: '/views/main.html',
dependencies: [
'/scripts/controllers/main.js'
]
}
}
};
});
|