renamed change currency function and sorted out recommended currency

This commit is contained in:
Henry Oswald 2014-10-13 16:27:27 +01:00
parent 2bf34bba4d
commit 2bbdea3433
2 changed files with 4 additions and 5 deletions

View file

@ -1,8 +1,7 @@
extends ../layout
block scripts
script(type='text/javascript').
window.recurlyPublicToken = '#{settings.apis.recurly.publicKey}'
window.recomendedCurrency = '#{recomendedCurrency}'
mixin printPlan(plan)
-if (!plan.hideFromUsers)
@ -13,7 +12,7 @@ mixin printPlan(plan)
-if (plan.annual)
| {{plans[currencyCode][plan.planCode.replace("-annual","")]['annual']}} / #{translate("year")}
-else
| {{plans[currencyCode][plan.planCode]['monthly']}} / #{translate("month")}
| {{plans[currencyCode][plan.planCode]['monthly']}} / #{translate("month")}
td
-if (subscription.state == "free-trial")
a(href="/user/subscription/new?planCode=#{plan.planCode}").btn.btn-success #{translate("subscribe_to_this_plan")}
@ -83,7 +82,7 @@ block content
li(ng-repeat="(currency, value) in plans", dropdown-toggle)
a(
href,
ng-click="changeCurreny(currency)"
ng-click="changeCurrency(currency)"
) {{currency}} ({{value['symbol']}})
p: table.table
tr

View file

@ -9,7 +9,7 @@ define [
$scope.plans = MultiCurrencyPricing.plans
$scope.currencyCode = MultiCurrencyPricing.currencyCode
$scope.changeCurreny = (newCurrency)->
$scope.changeCurrency = (newCurrency)->
MultiCurrencyPricing.currencyCode = newCurrency