mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 16:47:58 -05:00
10 lines
396 B
CoffeeScript
10 lines
396 B
CoffeeScript
|
publishableKey = if application.isProduction() then 'pk_live_27jQZozjDGN1HSUTnSuM578g' else 'pk_test_zG5UwVu6Ww8YhtE9ZYh0JO6a'
|
||
|
|
||
|
module.exports = handler = StripeCheckout.configure({
|
||
|
key: publishableKey
|
||
|
name: 'CodeCombat'
|
||
|
email: me.get('email')
|
||
|
image: '/images/pages/base/logo_square_250.png'
|
||
|
token: (token) ->
|
||
|
Backbone.Mediator.publish 'stripe:received-token', { token: token }
|
||
|
})
|