overleaf/services/web/public/coffee/app/directives/stopPropagation.coffee

11 lines
215 B
CoffeeScript
Raw Normal View History

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