FB.ui 和设置弹出窗口大小
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在他们修复此问题之前,我使用了一些 hacky 解决方法:
http://pastebin.com/Qwu0bEed
I've used a bit of a hacky workaround until they fix this:
http://pastebin.com/Qwu0bEed
如果将其更改为
显示:“dialog”,
它将正确调整大小
if you change it to
display: 'dialog'
it will resize correctly
使用
Use