mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
8 lines
218 B
CoffeeScript
8 lines
218 B
CoffeeScript
Darkswarm.directive "ofnDisableEnter", ()->
|
|
restrict: 'A'
|
|
link: (scope, element, attrs)->
|
|
element.bind "keydown keypress", (e)->
|
|
code = e.keyCode || e.which
|
|
if code == 13
|
|
e.preventDefault()
|