Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my facebook page tab app I have a couple of different pages that are of different height. As title says, the page pushes the height up when necessary, but the window height doesn't return to shortest possible when I go back to a page that doesn't require much height. This is how it looks:

http://www.facebook.com/EasterIslandTraveling/app_167418876720611

The "Basics" page is the tall page I'm referring to.

After FB.init i use FB.Canvas.setAutoGrow(); which should do the trick, right? What am I doing wrong?

share|improve this question

1 Answer

up vote 0 down vote accepted

When using FB.init(), first fb js library must be initialized. So you have to include FB.init() function inside window.fbAsyncInit event like as follows:

window.fbAsyncInit = function()  {
            FB.init({ appId: 'FB APP ID', 
                status: true, 
                cookie: true,
                xfbml: true,
                oauth: true
            });

            FB.Canvas.setSize({ height: 700 });
        }

You can think as you are writing a javascript inside document ready event...

$(document).ready(function(){ /* Js Code */ })
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.