Skip to content

Instantly share code, notes, and snippets.

@jhsu
Created June 25, 2013 06:09
Show Gist options
  • Select an option

  • Save jhsu/5856306 to your computer and use it in GitHub Desktop.

Select an option

Save jhsu/5856306 to your computer and use it in GitHub Desktop.
toggleCvc: ->
@cvc_container ||= @form.find(".payment-cvc")
@cvc_content ||= @cvc_container.contents()
cvc = @cvc_content.find('input').val()
if !cvc || /^\s*$/.test(cvc)
@cvc_content.remove()
showCvc: ->
@cvc_container.html(@cvc_content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment