mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-12 07:30:46 +02:00
13 lines
256 B
CoffeeScript
13 lines
256 B
CoffeeScript
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)
|
|
}
|