Created
June 12, 2012 01:19
-
-
Save yorzi/2913789 to your computer and use it in GitHub Desktop.
limit_chosen_count.coffee
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".chzn").change -> | |
el = $(@) | |
if el.val()? == false or el.val().length < 3 | |
exists = 0 | |
exists = el.val().length if el.val()? | |
$(".metro-stations-counter").html("You can add <strong>#{2 - exists}</strong> more metro station(s) to this organization.</span>") | |
else | |
el.val(el.val().slice(0, el.val().length - 1)) | |
el.trigger("liszt:updated") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment