Matteo Scandolo | fc4b37b | 2017-02-02 12:18:47 -0800 | [diff] [blame] | 1 | class DashboardExtensionComponent { |
2 | static $inject = ['XosSidePanel']; | ||||
3 | |||||
4 | constructor( | ||||
5 | private XosSidePanel: any | ||||
6 | ) { | ||||
7 | } | ||||
8 | } | ||||
9 | |||||
10 | export const xosDashboardExtensionComponent: angular.IComponentOptions = { | ||||
11 | template: require('./dashboard-extension.html'), | ||||
12 | controllerAs: 'vm', | ||||
13 | controller: DashboardExtensionComponent | ||||
14 | }; |