mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
9 lines
283 B
CoffeeScript
9 lines
283 B
CoffeeScript
angular.module('Darkswarm').directive "ofnDisableEnter", ()->
|
|
# Stops enter from doing normal enter things
|
|
restrict: 'A'
|
|
link: (scope, element, attrs)->
|
|
element.bind "keydown keypress", (e)->
|
|
code = e.keyCode || e.which
|
|
if code == 13
|
|
e.preventDefault()
|