mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-03 02:21:33 +00:00
9 lines
206 B
CoffeeScript
9 lines
206 B
CoffeeScript
angular.module("ofn.admin").directive "enterToSubmit", ->
|
|
restrict: 'A'
|
|
|
|
link: (scope, element, attrs) ->
|
|
element.bind "keypress", (event) ->
|
|
return if event.which != 13
|
|
|
|
scope.submit()
|