Skip to content

Instantly share code, notes, and snippets.

@nambrot
Created January 5, 2012 21:34
Show Gist options
  • Save nambrot/1567438 to your computer and use it in GitHub Desktop.
Save nambrot/1567438 to your computer and use it in GitHub Desktop.
// fetch paged responses
sync: function(method, model, options) {
this.trigger('load:start', this);
if (!this.next)
FB.api('/me/home', {'limit': '100'}, options.success)
else
FB.api(this.next.replace(/^(?:\/\/|[^\/]+)*\//, '/'), options.success);
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment