summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/vendor/view/scrollable.js
blob: d3540723de76fd12a5d2c91afa71517685ee1644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var ScrollableView = View.extend({

  deferScrollToTop: function(){
    setTimeout(this.scrollToTop.bind(this), 0)
  },
  
  scrollToTop: function(){
    this.scroller.refresh()
    app.collection.scroller.scrollTo(0, 0)
  },

})