I use FB.ui when the display option is set to a popup.
When the method is "stream.publish", it automatically downloads the content. However, when you use "fbml.dialog" (to display a selector with several friends), it shows a size that I cannot change (and the content is cropped).
I tried with the following approaches, with no luck:
FB.ui({ method: 'fbml.dialog', size: {width: 800, height: 500}, ... FB.ui({ method: 'fbml.dialog', width: 800, height: 500, ...
I also looked at the source code of the API, and it declares the method as follows:
Method Declaration:
'fbml.dialog': { size : { width: 575, height: 300 }, url : 'render_fbml.php', loggedOutIframe : true }...
Functions that perform methods:
// the basic call data var call = { cb : cb, id : id, size : method.size || {}, url : FB._domain.www + method.url, params : params };
Any help would be greatly appreciated ...