如何防止facebook-SDK(Javascript)从右向左移动注销按钮(“PluginResize”)

时间:2012-07-09 20:22:57

标签: facebook sdk facebook-javascript-sdk

使用facebook Javascript-SDK(从其服务器异步加载)会产生一种奇怪的效果:

通过SDK成功登录FB后,FB-Logout-Button从右向左逐像素地移动。

登录/注销按钮声明为:

<fb:login-button size="large" autologoutlink="true" perms="email,user_birthday,status_update,publish_stream"></fb:login-button>

在Firebug中停止脚本会产生一个名为M6XESwM2V2D.js的javascript文件,并在以下代码行中显示:

__d("PluginResize",["Log","UnverifiedXD","bind","copyProperties","curry"],function(a,b,c,d,e,f){var g=b('Log'),h=b('UnverifiedXD'),i=b('bind'),j=b('copyProperties'),k=b('curry');function l(o){o=o||document.body;return o.offsetWidth+o.offsetLeft;}function m(o){o=o||document.body;return o.offsetHeight+o.offsetTop;}function n(o,p,event){this.calcWidth=o||l;this.calcHeight=p||m;this.width=undefined;this.height=undefined;this.event=event||'resize';}j(n.prototype,{resize:function(){var o=this.calcWidth(),p=this.calcHeight();if(o!==this.width||p!==this.height){g.debug('Resizing Plugin: (%s, %s, %s)',o,p,this.event);this.width=o;this.height=p;h.send({type:this.event,width:o,height:p});}return this;},auto:function(o){setInterval(i(this,this.resize),o||250);return this;}});n.auto=function(o,p,event){return new n(k(l,o),k(m,o),event).resize().auto(p);};e.exports=n;});

当停止javascript-debugger中的代码时,按钮移动停止(按预期),然后继续执行代码将其移动。在上面打印的javascript-Code中,调用了setInterval-Method。所以,这可以解释这种行为。但为什么他们这样做呢?

我该如何阻止这种效果?

2 个答案:

答案 0 :(得分:1)

我实际上在我的网站上遇到了同样的问题。它似乎是Facebook的一个错误。我把它作为一个错误提出来了:

https://developers.facebook.com/bugs/302726826490772

答案 1 :(得分:1)

顺便说一下 - 添加style =“position:fixed;”登录按钮帮助我:

<fb:login-button autologoutlink="true" style="position: fixed;"></fb:login-button>

干杯, KT。