mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
10 lines
253 B
CoffeeScript
10 lines
253 B
CoffeeScript
Darkswarm.directive "ofnDisableScroll", ()->
|
|
restrict: 'A'
|
|
|
|
link: (scope, element, attrs)->
|
|
element.bind 'focus', ->
|
|
element.bind 'mousewheel', (e)->
|
|
e.preventDefault()
|
|
element.bind 'blur', ->
|
|
element.unbind 'mousewheel'
|