ledgerrb/public/app/js/state.js

30 lines
615 B
JavaScript
Raw Normal View History

// Sub-application/main Level State
app.config(['$stateProvider', function($stateProvider) {
$stateProvider
.state('app.balance', {
url: '/balance',
templateUrl: 'js/templates/balance.tpl.html',
controller: 'BalanceCtrl'
})
.state('app', {
url: '',
controller: 'AppCtrl',
views: {
'navbar': {
templateUrl: 'js/templates/navbar.tpl.html',
controller: 'NavbarCtrl'
},
'main': {
templateUrl: 'js/templates/main.tpl.html'
}
}
})
.state('404', {
url: '/404',
templateUrl: 'js/templates/404.tpl.html',
controller: 'AppCtrl'
});
}]);