Skip to content

Instantly share code, notes, and snippets.

@niraj-shah
Last active December 25, 2015 00:19
Embed
What would you like to do?
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