diff --git a/services/web/app/views/subscriptions/dashboard.jade b/services/web/app/views/subscriptions/dashboard.jade index ff56d6d56f..1526abf11a 100644 --- a/services/web/app/views/subscriptions/dashboard.jade +++ b/services/web/app/views/subscriptions/dashboard.jade @@ -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 diff --git a/services/web/public/coffee/main/subscription-dashboard.coffee b/services/web/public/coffee/main/subscription-dashboard.coffee index 548b7daf08..f39eb34e0d 100644 --- a/services/web/public/coffee/main/subscription-dashboard.coffee +++ b/services/web/public/coffee/main/subscription-dashboard.coffee @@ -9,7 +9,7 @@ define [ $scope.plans = MultiCurrencyPricing.plans $scope.currencyCode = MultiCurrencyPricing.currencyCode - $scope.changeCurreny = (newCurrency)-> + $scope.changeCurrency = (newCurrency)-> MultiCurrencyPricing.currencyCode = newCurrency