2016-06-17 18:18:03 +08:00
|
|
|
app.directive('myAlert', ['config', function(config){
|
|
|
|
return {
|
|
|
|
templateUrl: config.rootPath+ 'templates/alert.html',
|
|
|
|
scope: {
|
|
|
|
title: "=",
|
2016-06-20 14:39:20 +08:00
|
|
|
message: "=",
|
|
|
|
visible: "=",
|
|
|
|
cb: "="
|
2016-06-17 18:18:03 +08:00
|
|
|
},
|
|
|
|
link: function(scope){
|
|
|
|
scope.dismiss = function(){
|
2016-06-20 14:39:20 +08:00
|
|
|
if(typeof scope.cb === 'function'){
|
|
|
|
scope.cb();
|
|
|
|
}
|
2016-06-17 18:18:03 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]);
|