mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
11 lines
365 B
CoffeeScript
11 lines
365 B
CoffeeScript
angular.module('Darkswarm').directive "ofnDisableScroll", ()->
|
|
# Stops scrolling from incrementing or decrementing input value
|
|
# Useful for number inputs
|
|
restrict: 'A'
|
|
link: (scope, element, attrs)->
|
|
element.bind 'focus', ->
|
|
element.bind 'mousewheel', (e)->
|
|
e.preventDefault()
|
|
element.bind 'blur', ->
|
|
element.unbind 'mousewheel'
|