UNPKG

thalassa-consul

Version:
16 lines (15 loc) 358 B
angular.module("ui.bootstrap.alert", []).directive('alert', function () { return { restrict:'EA', templateUrl:'template/alert/alert.html', transclude:true, replace:true, scope: { type: '=', close: '&' }, link: function(scope, iElement, iAttrs, controller) { scope.closeable = "close" in iAttrs; } }; });