summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartView.js
blob: 5918048c1f67adeb93bcef6701913c076b81bc8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var CartView = View.extend({
  
  el: "#cart",
  
  events: {
  },
  
  initialize: function(){
    this.summary = new CartSummary ()
    this.payment = new CartPayment ()
    this.shipping = new CartShipping ()
  },

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

})