Files
dss.web/client/app/root.js
Fergal Moran d2c529bafe Screw you git!
2015-12-01 19:50:20 +00:00

32 lines
1.1 KiB
JavaScript
Executable File

'use strict'
angular.module('dssWebApp')
.config(function ($stateProvider) {
$stateProvider
.state('root', {
url: '',
abstract: true,
views: {
'navbar': {
templateUrl: 'app/components/navbar/navbar.html',
controller: 'NavbarCtrl'
},
'pageheader': {
templateUrl: 'app/components/pageheader/pageheader.html',
controller: 'PageheaderCtrl'
},
'sidebar': {
templateUrl: 'app/components/sidebar/sidebar.html',
controller: 'SidebarCtrl'
},
'chatbar': {
templateUrl: 'app/components/chatbar/chatbar.html',
controller: 'ChatbarCtrl'
},
'footer': {
templateUrl: 'app/components/footer/footer.html',
controller: 'FooterCtrl'
}
}
});
});