mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
18 lines
No EOL
713 B
CoffeeScript
18 lines
No EOL
713 B
CoffeeScript
publishableKey = if application.isProduction() then 'pk_live_27jQZozjDGN1HSUTnSuM578g' else 'pk_test_zG5UwVu6Ww8YhtE9ZYh0JO6a'
|
|
|
|
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) ->
|
|
console.log 'trigger?', handler.trigger
|
|
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."
|
|
_.extend(handler, Backbone.Events) |