I want to resize the Facebook app height and page tab height automatically upon page load, but it isn't working.
I'm sure there's something simple I'm doing wrong, but I can't identify it.
Here is the simplified code I'm using: (++++ indicates cut out code)
<!DOCTYPE ++++ >
<html>
<head>++++</head>
<body>
<div id="container">++++</div>
<div id="fb-root"></div>
<script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
FB.init({appId: '++++', status: true, cookie: true, xfbml: true });
FB.Canvas.setSize();
</script>
</body>
</html>
Thanks in advance!
Update:
Under Settings, Advanced, Canvas Settings, Canvas Height, I checked the fixed option. (As far as I can see, there is no longer a Settable option, presumably it has been renamed.)
My app has fully loaded by the time I called that method.
From a little investigation, I can see that the app height, and page tab height becomes the correct size to begin with, then increases almost immediately to a height of 1200px. (And my fixed height is set at 600px.
Update: On the iframe code it says the following: <iframe src="++ommited++?signed_request=++ommited++" frameborder="0" scrolling="AUTO" style="width:810px; height:1200px;padding:0px; margin:0px" marginheight="0px" marginwidth="0px"></iframe>. As you can see it says height:1200px; which appears to be the problem.
Update: It appears that the app defaults to the size set in my app settings, then it immediately resizes to 1200px. This occurs even when I remove the Facebook code for changing the app and page tab height.
Any suggestions? Thanks