overleaf/services/web/public/coffee/directives/rightClick.coffee

13 lines
256 B
CoffeeScript
Raw Normal View History

define [
"base"
], (App) ->
App.directive "rightClick", () ->
return {
restrict: "A",
link: (scope, element, attrs) ->
element.bind "contextmenu", (e) ->
e.preventDefault()
e.stopPropagation()
scope.$eval(attrs.rightClick)
}