Skip to content

Instantly share code, notes, and snippets.

@nitishn
Created September 19, 2014 21:12
Show Gist options
  • Save nitishn/0b5d295d6e258177bddd to your computer and use it in GitHub Desktop.
Save nitishn/0b5d295d6e258177bddd to your computer and use it in GitHub Desktop.
JS scroll to a position with Facebook SDK
scrollTo: function ( y ) {
FB.Canvas.getPageInfo(function(pageInfo){
$({y: pageInfo.scrollTop}).animate(
{y: y},
{duration: 500, step: function(offset){
FB.Canvas.scrollTo(0, offset);
}
});
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment