rightClick.coffee 256 B

123456789101112
  1. define [
  2. "base"
  3. ], (App) ->
  4. App.directive "rightClick", () ->
  5. return {
  6. restrict: "A",
  7. link: (scope, element, attrs) ->
  8. element.bind "contextmenu", (e) ->
  9. e.preventDefault()
  10. e.stopPropagation()
  11. scope.$eval(attrs.rightClick)
  12. }