socialforge/public/javascripts/wechat/directives/alert.js

18 lines
461 B
JavaScript
Raw Normal View History

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