summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account/PaymentView.js
blob: 95b63879eb3386b10a97abb71a94a005772259a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var PaymentView = View.extend({
  
  el: "#payment",

  events: {
  },

  initialize: function(){
    this.address = new AddressView ({ parent: this })
    this.cc = new CreditCardView ({ parent: this })
  },

  show: function(){
    document.body.className = "payment"
  },

})