var ScrollableView = View.extend({ events: { "load img": "deferScrollToTop", }, deferScrollToTop: function(){ setTimeout(this.scrollToTop.bind(this), 0) }, refreshScroller: function(){ this.scroller.refresh() }, scrollToTop: function(){ this.scroller.refresh() app.collection.scroller.scrollTo(0, 0) }, })