blob: 6d5cefcc9f2256c0d20d16d2233ab17a5a85b674 [file] [log] [blame]
'use strict';
angular.module('ngXosLib')
.component('alertTest', {
restrict: 'E',
bindings: {},
bindToController: true,
controllerAs: 'vm',
templateUrl: 'templates/alert.dev.html',
controller: function () {
this.config1 = {
type: 'danger'
};
this.config2 = {
type: 'danger',
closeBtn: true
};
this.config3 = {
type: 'info'
};
this.config4 = {
type: 'success'
};
this.config5 = {
type: 'warning'
};
}
})