summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartPayment.js
blob: 69cbf81bb3d58c58e2cad0ca31bf4d4573cc8b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var CartPayment = View.extend({
  
  el: "#cart_payment",
  
  events: {
  },

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

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

})