summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/js/lib/cart/CartView.js
blob: 5d741492056925194263586c901641023e2917ad (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.billing = new CartBilling ()
    this.shipping = new CartShipping ()
  },

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

})