Skip to content

Instantly share code, notes, and snippets.

@apfelbox
Created November 18, 2013 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apfelbox/7527643 to your computer and use it in GitHub Desktop.
Save apfelbox/7527643 to your computer and use it in GitHub Desktop.
How to scroll in a facebook app
function _scrollToTop ()
{
FB.Canvas.getPageInfo(
function(pageInfo)
{
$({ y: pageInfo.scrollTop }).animate(
{ y: 0 },
{
duration: 1000,
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