diff options
Diffstat (limited to 'StoneIsland/www/js/lib/account/PaymentView.js')
| -rw-r--r-- | StoneIsland/www/js/lib/account/PaymentView.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/StoneIsland/www/js/lib/account/PaymentView.js b/StoneIsland/www/js/lib/account/PaymentView.js index 95b63879..103cbf8f 100644 --- a/StoneIsland/www/js/lib/account/PaymentView.js +++ b/StoneIsland/www/js/lib/account/PaymentView.js @@ -6,12 +6,18 @@ var PaymentView = View.extend({ }, initialize: function(){ + this.$form = this.$("form") + this.$msg = this.$(".msg") this.address = new AddressView ({ parent: this }) this.cc = new CreditCardView ({ parent: this }) }, show: function(){ + app.footer.show("SAVE", "CANCEL") document.body.className = "payment" }, + + save: function(){ + }, }) |
