mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-31 21:37:16 +00:00
7 lines
174 B
CoffeeScript
7 lines
174 B
CoffeeScript
Darkswarm.directive "integer", ->
|
|
restrict: 'A'
|
|
link: (scope, elem, attr) ->
|
|
elem.bind 'input', ->
|
|
digits = elem.val().replace(/\D/g, "")
|
|
elem.val digits
|