FB.ui并设置弹出窗口大小

时间:2010-06-01 09:20:16

标签: javascript facebook popup size

我使用FB.ui并将display参数设置为popup。

当方法为“stream.publish”时,它会在加载内容时自动调整大小。但是,当使用'fbml.dialog'(为了显示多朋友选择器)时,它显示的是我无法更改的大小(并且内容显示为已裁剪)。

我尝试过以下方法,没有运气:

FB.ui({
method: 'fbml.dialog',
size: {width: 800, height: 500},
...

FB.ui({
method: 'fbml.dialog',
width: 800,
height: 500,
...

此外,我一直在查看API源代码,并以这种方式声明方法:

方法声明:

'fbml.dialog': {
    size : { width: 575, height: 300 },
    url : 'render_fbml.php',
    loggedOutIframe : true
}...

执行方法的函数:

// the basic call data
var call = {
  cb : cb,
  id : id,
  size : method.size || {},
  url : FB._domain.www + method.url,
  params : params
};

非常感谢任何帮助......

3 个答案:

答案 0 :(得分:2)

我使用了一些hacky解决方法,直到他们解决了这个问题:

http://pastebin.com/Qwu0bEed

答案 1 :(得分:0)

如果您将其更改为

显示:'对话框'

它会正确调整大小

答案 2 :(得分:0)

使用

FB.UIServer.Methods["fbml.dialog"].size = {width:640, height:400};