summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/cart/CartBilling.js
blob: ef9b8eff863788ff62191e5b3ae78c42ad20d92d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var CartBilling = View.extend({
  
  el: "#cart_billing",
  
  events: {
  },

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

})