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

16 lines
412 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: {
message: "=",
title: "=",
visible: "="
},
link: function(scope){
scope.visible = false;
scope.dismiss = function(){
scope.visible = false;
};
}
}
}]);