var CartConfirm = View.extend({ el: "#cart_confirm", events: { }, initialize: function(){ this.scroller = new IScroll('#cart_confirm', app.iscroll_options) }, show: function(){ document.body.className = "cart" app.cart.el.className = "confirm" app.footer.show("PLACE ORDER", "CANCEL") this.deferScrollToTop() }, populate: function(){ }, save: function(){ }, cancel: function(){ }, })