up vote 1 down vote favorite
1
share [g+] share [fb]

I'm implementing Facebook connect for a website. The facebook connect code is inside an iframe. Everything works well but when Facebook is supposed to show a popup dialog (for example FB.Connect.showFeedDialog or FB.Connect.streamPublish) The popup shows inside the iframe. Since its a small iframe window the popup is half hidden.

Any idea on how to solve it is very much appreciated. Note: the FB login and logout popups do show well.

link|improve this question

75% accept rate
feedback

1 Answer

My window was too small to show the FB iframe properly, so I overrode the private _openFeedDialogIframe function to call the _openFeedDialogWindow:

var init = function()
{
    FB.Connect.get_status().waitUntilReady(function(status)
    {
        FB.Connect._openFeedDialogIframe = function(b, a, f)
        {
            FB.Connect._openFeedDialogWindow(b, a, f);
        };
    });
};
FB.ensureInit(init);

This forces a popup every time an iframe is to be shown.

Hope this helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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