var CartView = View.extend({ el: "#cart", events: { }, initialize: function(){ this.summary = new CartSummary () this.payment = new CartPayment () this.shipping = new CartShipping () }, show: function(){ document.body.className = "cart" }, })