blob: e5fbe3ff5159dd74cbde0d58524ec8133dfdefb2 [file] [log] [blame]
import {IXosStyleConfig} from '../../../index';
class FooterCtrl {
static $inject = ['StyleConfig'];
public brand: string;
/** @ngInject */
constructor(
private StyleConfig: IXosStyleConfig
) {
this.brand = this.StyleConfig.projectName;
}
}
export const xosFooter: angular.IComponentOptions = {
template: require('./footer.html'),
controllerAs: 'vm',
controller: FooterCtrl
};