Skip to content

Instantly share code, notes, and snippets.

@hemc4
Created June 27, 2014 09:08
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 hemc4/ca937843a07f458a84d7 to your computer and use it in GitHub Desktop.
Save hemc4/ca937843a07f458a84d7 to your computer and use it in GitHub Desktop.
Facebook tab Remove scrollbar
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'XXXXXXXXXX', // App ID
channelUrl : '//www.domain.com/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
});
// Additional initialization code here
FB.Canvas.setAutoGrow(false);
FB.Canvas.setSize({height:600});
setTimeout(function(){
FB.Canvas.setAutoGrow(true);
}, 100);
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
body {
overflow: hidden;
/* Can also use overflow-x or overflow-y if you like */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment