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

发布于 2024-09-03 20:58:36 字数 713 浏览 4 评论 0原文

我正在使用 FB.ui,并将显示参数设置为弹出。

当方法为“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
};

任何帮助将不胜感激...

I am using FB.ui with the display parameter set to popup.

When the method is 'stream.publish', it autoresizes when the content is loaded. However, when using 'fbml.dialog' (in order to display a multi-friend selector) it shows a size that I'm not able to change (and the content is displayed cropped).

I have 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,
...

Also I've been looking at the API source code, and it declares the method this way:

Method declaration:

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

Functions that executes the 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 much appreciated...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

此刻的回忆 2024-09-10 20:58:36

在他们修复此问题之前,我使用了一些 hacky 解决方法:

http://pastebin.com/Qwu0bEed

I've used a bit of a hacky workaround until they fix this:

http://pastebin.com/Qwu0bEed

风流物 2024-09-10 20:58:36

如果将其更改为

显示:“dialog”,

它将正确调整大小

if you change it to

display: 'dialog'

it will resize correctly

家住魔仙堡 2024-09-10 20:58:36

使用

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

Use

FB.UIServer.Methods["fbml.dialog"].size = {width:640, height:400};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文