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

  initialize: function(){
    this.address = new AddressView ({ parent: this })
  },
  
  show: function(){
    document.body.className = "cart_shipping"
  },

})