FB.Canvas.setSize() is not resizing my IFrame in Chrome or IE9. I have tried setting it with the following:
<script type="text/javascript">
window.fbAsyncInit = function()
{
FB.Canvas.setSize({ width: 810, height: 1200 });
}
</script>
I have also set the Canvas height in the app settings. The height adjusts for Safari and Firefox, but I get scroll bars in Chrome and IE9.
I also have the following before the closing body tag:
<div id="fb-root"></div>
<script type="text/javascript" src="http://connect.facebook.net/de_DE/all.js"></script>
<script type="text/javascript">
FB.init({
appId: '..',
status: true,
cookie: true,
xfbml: true
});
FB.Canvas.setAutoGrow();
</script>
Any idea what I am doing wrong?
"This method is only enabled when Canvas Height is set to "Settable (Default: 800px)" in the App Dashboard.". – Lix Sep 23 '12 at 14:46http://given, because that’ll cause problems when your app is loaded over HTTPS. Usesrc="//connect.facebook.net/de_DE/all.js"instead – this let’s the browser decide over which protocol to request the script, according to the one the document was loaded over. – CBroe Sep 23 '12 at 14:52