2014-11-17 18:15:02 -05:00
|
|
|
publishableKey = if application.isProduction() then 'pk_live_27jQZozjDGN1HSUTnSuM578g' else 'pk_test_zG5UwVu6Ww8YhtE9ZYh0JO6a'
|
2015-03-18 20:17:30 -04:00
|
|
|
|
2015-11-24 13:42:00 -05:00
|
|
|
if StripeCheckout?
|
|
|
|
module.exports = handler = StripeCheckout.configure({
|
|
|
|
key: publishableKey
|
|
|
|
name: 'CodeCombat'
|
|
|
|
email: me.get('email')
|
|
|
|
image: "https://codecombat.com/images/pages/base/logo_square_250.png"
|
|
|
|
token: (token) ->
|
|
|
|
handler.trigger 'received-token', { token: token }
|
|
|
|
Backbone.Mediator.publish 'stripe:received-token', { token: token }
|
|
|
|
locale: 'auto'
|
|
|
|
})
|
|
|
|
else
|
|
|
|
module.exports = {}
|
|
|
|
console.error "Failure loading StripeCheckout API, returning empty object."
|
2016-01-12 15:34:10 -05:00
|
|
|
_.extend(handler, Backbone.Events)
|