Files
openfoodnetwork/app/assets/javascripts/darkswarm/directives/max.js.coffee
2014-07-31 12:23:10 +10:00

7 lines
161 B
CoffeeScript

Darkswarm.directive "max", ->
restrict: 'A'
link: (scope, elem, attr)->
elem.bind 'input', ->
if elem.val() > +attr.max
elem.val attr.max