Skip to content

Instantly share code, notes, and snippets.

@niraj-shah
Last active December 25, 2015 00:19
Show Gist options
  • Save niraj-shah/6887230 to your computer and use it in GitHub Desktop.
Save niraj-shah/6887230 to your computer and use it in GitHub Desktop.
Removing Facebook Page App Scrollbars
window.fbAsyncInit = function() {
FB.init({
appId : 'xxx', // App ID
channelUrl : 'channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Remove those pesky scrollbars
FB.Canvas.setAutoGrow(true);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment