Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. .directive('smartConfirm', function(){
  2.  
  3. return{
  4. restrict: 'EA',
  5. scope:{
  6. "confirm": "&"
  7. },
  8. transclude: true,
  9. template:
  10. '<a ng-hide="show" class="btn btn-primary" ng-click="show=true"><ng-transclude/></a>' +
  11. '<div ng-show="show">' +
  12. '<a class="btn btn-danger" ng-click="confirm();show=false"><i class="fa fa-check fa-fw"></i></a> ' +
  13. '<a class="btn btn-primary" ng-click="show=false"><i class="fa fa-times fa-fw"></i></a>' +
  14. '</div>',
  15. link: function(scope, element, attrs){
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement