mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 13:11:33 +00:00
32 lines
1.1 KiB
JavaScript
Executable File
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'
|
|
}
|
|
}
|
|
});
|
|
});
|