Merge branch 'master' into production

This commit is contained in:
Nick Winter 2015-03-24 15:40:04 -07:00
commit 94cec4c9e6
5 changed files with 5 additions and 5 deletions

View file

@ -53,7 +53,7 @@ module.exports = class InvoicesView extends RootView
amount: @amount
description: @description
bitcoin: true
alipay: if me.get('chinaVersion') or me.get('preferredLanguage')[...2] is 'zh' then true else 'auto'
alipay: if me.get('chinaVersion') or (me.get('preferredLanguage') or 'en-US')[...2] is 'zh' then true else 'auto'
onStripeReceivedToken: (e) ->
data = {

View file

@ -247,7 +247,7 @@ class RecipientSubs
options = {
description: "#{@recipientEmails.length} " + $.i18n.t('subscribe.stripe_description', defaultValue: 'Monthly Subscriptions')
amount: amount
alipay: if me.get('chinaVersion') or me.get('preferredLanguage')[...2] is 'zh' then true else 'auto'
alipay: if me.get('chinaVersion') or (me.get('preferredLanguage') or 'en-US')[...2] is 'zh' then true else 'auto'
alipayReusable: true
}
@state = 'start subscribe'

View file

@ -112,7 +112,7 @@ module.exports = class SubscribeModal extends ModalView
options = {
description: $.i18n.t('subscribe.stripe_description')
amount: @product.amount
alipay: if me.get('chinaVersion') or me.get('preferredLanguage')?[...2] is 'zh' then true else 'auto'
alipay: if me.get('chinaVersion') or (me.get('preferredLanguage') or 'en-US')[...2] is 'zh' then true else 'auto'
alipayReusable: true
}

View file

@ -187,7 +187,7 @@ module.exports = class LevelEditView extends RootView
onPopulateI18N: ->
@level.populateI18N()
f = -> document.location.reload()
setTimeout(f, 200)
setTimeout(f, 2000)
toggleTab: (e) ->
@renderScrollbar()

View file

@ -70,7 +70,7 @@ module.exports = class BuyGemsModal extends ModalView
description: $.t(product.i18n)
amount: product.amount
bitcoin: true
alipay: if me.get('chinaVersion') or me.get('preferredLanguage')[...2] is 'zh' then true else 'auto'
alipay: if me.get('chinaVersion') or (me.get('preferredLanguage') or 'en-US')[...2] is 'zh' then true else 'auto'
})
@productBeingPurchased = product