Christopher Sexton
Christopher Sexton
For pictures featured on the website I think we should just check them into git. No need to have external assets at this point. That wouldn't work for _all_ the...
@scottzirkel I was able to work around this by putting the following in the stripe success callback: ``` javascript $form.find('[data-stripe]').val('') ```
@pthurmond I had the same problem. I was able to hack this by adding: ``` coffeescript $(@_inputViews.number.el).find("input").attr("placeholder", @options.genericPlaceholder) ``` To [Skeuocard.coffee](https://github.com/kenkeiter/skeuocard/blob/2d3067e/javascripts/src/Skeuocard.coffee#L372-L374) on Line 373. Or if you want the js...
@kenkeiter I would be up for submitting a PR with a fix for this issue, but wasn't sure the best way to handle this. Seems like a couple of approaches...
:+1: for this. I was able to test it and confirm it worked. Thanks @ricobeck!