mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
made what is returned for multi currency more explicit
This commit is contained in:
parent
7964616f02
commit
f55ef2f1b4
1 changed files with 38 additions and 37 deletions
|
@ -8,44 +8,45 @@ define [
|
|||
|
||||
currencyCode = window.recomendedCurrency
|
||||
|
||||
currencyCode:currencyCode
|
||||
plans:
|
||||
USD:
|
||||
symbol: "$"
|
||||
student:
|
||||
monthly: "$8"
|
||||
annual: "$80"
|
||||
collaborator:
|
||||
monthly: "$15"
|
||||
annual: "$180"
|
||||
professional:
|
||||
monthly: "$30"
|
||||
annual: "$360"
|
||||
|
||||
EUR:
|
||||
symbol: "€"
|
||||
student:
|
||||
monthly: "€7"
|
||||
annual: "€70"
|
||||
collaborator:
|
||||
monthly: "€12"
|
||||
annual: "€144"
|
||||
professional:
|
||||
monthly: "€25"
|
||||
annual: "€300"
|
||||
|
||||
GBP:
|
||||
symbol: "£"
|
||||
student:
|
||||
monthly: "£6"
|
||||
annual: "£60"
|
||||
collaborator:
|
||||
monthly: "£10"
|
||||
annual: "£120"
|
||||
professional:
|
||||
monthly: "£22"
|
||||
annual: "£264"
|
||||
return {
|
||||
currencyCode:currencyCode
|
||||
plans:
|
||||
USD:
|
||||
symbol: "$"
|
||||
student:
|
||||
monthly: "$8"
|
||||
annual: "$80"
|
||||
collaborator:
|
||||
monthly: "$15"
|
||||
annual: "$180"
|
||||
professional:
|
||||
monthly: "$30"
|
||||
annual: "$360"
|
||||
|
||||
EUR:
|
||||
symbol: "€"
|
||||
student:
|
||||
monthly: "€7"
|
||||
annual: "€70"
|
||||
collaborator:
|
||||
monthly: "€12"
|
||||
annual: "€144"
|
||||
professional:
|
||||
monthly: "€25"
|
||||
annual: "€300"
|
||||
|
||||
GBP:
|
||||
symbol: "£"
|
||||
student:
|
||||
monthly: "£6"
|
||||
annual: "£60"
|
||||
collaborator:
|
||||
monthly: "£10"
|
||||
annual: "£120"
|
||||
professional:
|
||||
monthly: "£22"
|
||||
annual: "£264"
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue