Jay Elbourne
Joined
1,010 Experience
10 Lessons Completed
0 Questions Solved
Activity
I had same issue and its a simple fix.
Turbolinks is the problem so to fix wrap your stripe javascript function like so in your coffee file:
ready = ->
...
the stripe functions go here
...
$(document).ready(ready)
$(document).on('page:load', ready)