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