directives.js 398 B

12345678910111213
  1. angular.module('todoaf')
  2. .directive("li",function(){
  3. return {
  4. restrict:"E",
  5. link:function($scope,$element,attrs){
  6. $element.on("longTap",function(event){
  7. if(!confirm("Are you sure you want to delete this todo")) return;
  8. $(event.target).off("longTap");
  9. $scope.$eval(attrs.longPress);
  10. });
  11. }
  12. };
  13. });