Browse Source

Using existing function getAmount

pull/358/head
Anton Lobovkin 5 years ago
committed by GitHub
parent
commit
4e0460c69b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      static/js/billing.js

+ 2
- 3
static/js/billing.js View File

@ -163,8 +163,7 @@ $(function () {
} else {
var caption = "Change Billing Plan";
if (planId) {
var amount = planId.substr(1);
caption += " And Pay $" + amount + " Now";
caption += " And Pay $" + getAmount(planId) + " Now";
}
$("#change-plan-btn")
@ -175,4 +174,4 @@ $(function () {
}
updateChangePlanForm();
});
});

Loading…
Cancel
Save