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

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

})