1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
var SingleOrder = ScrollableView.extend({ el: "#single_order", template: $("#single_order .template"), initialize: function(opt){ this.parent = opt.parent this.scroller = new IScroll('#single_order', app.iscroll_options) }, show: function(id){ document.body.className = "orders" app.orders.el.className = "single" this.deferScrollToTop() }, })