Arpit Agarwal | 4397874 | 2016-08-09 15:38:25 -0700 | [diff] [blame] | 1 | 'use strict'; |
2 | |||||
3 | angular.module('ngXosLib') | ||||
4 | .component('alertTest', { | ||||
5 | restrict: 'E', | ||||
6 | bindings: {}, | ||||
7 | bindToController: true, | ||||
8 | controllerAs: 'vm', | ||||
9 | templateUrl: 'templates/alert.dev.html', | ||||
10 | controller: function () { | ||||
11 | this.config1 = { | ||||
12 | type: 'danger' | ||||
13 | }; | ||||
14 | |||||
15 | this.config2 = { | ||||
16 | type: 'danger', | ||||
17 | closeBtn: true | ||||
18 | }; | ||||
19 | |||||
20 | this.config3 = { | ||||
21 | type: 'info' | ||||
22 | }; | ||||
23 | |||||
24 | this.config4 = { | ||||
25 | type: 'success' | ||||
26 | }; | ||||
27 | |||||
28 | this.config5 = { | ||||
29 | type: 'warning' | ||||
30 | }; | ||||
31 | } | ||||
32 | }) |