In my facebook application I use setAutoGrow() to make page fit to content and it works, but only on the first page, when I go to another page it get height of main page from application starts and doesnt fit new content. What`s wrong?
I`m doing it in this way
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $facebook->getAppId(); ?>',
channelUrl : '//autosn.net/channel.php',
cookie : true,
xfbml : true,
oauth: true
});
FB.Canvas.setAutoGrow();
...
You can take a look at this problem on http://apps.facebook.com/auto_social/, just go to any other page from main and you see a huge space under content, that left from main page.