Skip to content

Instantly share code, notes, and snippets.

@vadimdemedes
Created March 21, 2013 19:00
Show Gist options
  • Save vadimdemedes/5215688 to your computer and use it in GitHub Desktop.
Save vadimdemedes/5215688 to your computer and use it in GitHub Desktop.
Infinite scroll
var scroll = Chute.View.Plugins.InfiniteScroll.extend({
container: 'div.assets'
});
var AssetCollectionView = Chute.CollectionView.extend({
...
plugins: [scroll]
...
});
var view = new AssetCollectionView({ ... });
view.on('data:page', function(){
// page automatically incremented and new data loaded
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment