Facebook UI Feed大小无法调整

时间:2012-11-05 21:05:02

标签: javascript facebook sdk sencha-touch-2

Fb.UI Feed没有以正确的宽度显示,当对话框呈现时它不会调整到屏幕大小,iphone 4和4s除外。用我的ipod touch,和android一样大于屏幕。即时通讯使用sencha触摸框架。有没有办法调整对话框的大小。 我尝试使用FB.UIServer.Methods [“fbml.dialog”]。size = {width:300,height:555};但它说FB.UIServer未定义。

任何帮助都是apreciated

function publishStory() {
    FB.ui({
        access_token:accsstkn,
        method: 'feed',
        name: 'APP',
        caption: 'caption',
        display: 'touch',
        description: description,
        link: 'https://',
        picture: img,
    }, 

    function(response) {
        if (response && response.post_id) {
            alert('Successfully Saved');
            var postid = response.post_id;
            return response.post_id;
        } else {
            alert('Try Again');
        }
    }
    );

    return false;
}

publishStory();

0 个答案:

没有答案