blob: 6d5cefcc9f2256c0d20d16d2233ab17a5a85b674 [file] [log] [blame]
Arpit Agarwal43978742016-08-09 15:38:25 -07001'use strict';
2
3angular.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 })