Created
June 23, 2013 19:18
-
-
Save jhsu/5846184 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| stripeHidden = _.template """ | |
| <div> | |
| <input type='hidden' name='stripeToken' value='<%= id %>' /> | |
| <input type='hidden' name='payment_method[name]' value='<%= name %>' /> | |
| <input type='hidden' name='payment_method[last4]' value='<%= last4 %>' /> | |
| <input type='hidden' name='payment_method[exp_month]' value='<%= exp_month %>' /> | |
| <input type='hidden' name='payment_method[exp_year]' value='<%= exp_year %>' /> | |
| </div> | |
| """ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment