Files
openfoodnetwork/app/assets/javascripts/darkswarm/directives/max.js.coffee
2021-08-02 18:59:42 +01:00

7 lines
179 B
CoffeeScript

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