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" }, })