summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/PaymentView.js
blob: e8dd1dc2651139de8fb9a3bf54a1febeb2ad8a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
var PaymentView = FormView.extend({
  
  el: "#payment",

  events: {
  },

  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(){
  },

})