mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
18 lines
399 B
CoffeeScript
18 lines
399 B
CoffeeScript
define [
|
|
"base"
|
|
], (App) ->
|
|
App.directive "stopPropagation", ($http) ->
|
|
return {
|
|
restrict: "A",
|
|
link: (scope, element, attrs) ->
|
|
element.bind attrs.stopPropagation, (e) ->
|
|
e.stopPropagation()
|
|
}
|
|
|
|
App.directive "preventDefault", ($http) ->
|
|
return {
|
|
restrict: "A",
|
|
link: (scope, element, attrs) ->
|
|
element.bind attrs.preventDefault, (e) ->
|
|
e.preventDefault()
|
|
}
|