Matteo Scandolo | f6acdbe | 2016-12-13 10:29:37 -0800 | [diff] [blame] | 1 | import {StyleConfig} from '../../config/style.config'; |
2 | |||||
3 | class FooterCtrl { | ||||
4 | public brand: string; | ||||
5 | |||||
6 | /** @ngInject */ | ||||
7 | constructor() { | ||||
8 | this.brand = StyleConfig.projectName; | ||||
9 | } | ||||
10 | } | ||||
11 | |||||
12 | export const xosFooter: angular.IComponentOptions = { | ||||
13 | template: require('./footer.html'), | ||||
14 | controllerAs: 'vm', | ||||
15 | controller: FooterCtrl | ||||
16 | }; |