初始化Facebook评论后加载jScrollPane - 如何?

时间:2011-10-02 19:56:36

标签: facebook jscrollpane

Facebook评论插件是否有“onComplete”状态或类似状态?我正在尝试将jScrollPane滚动条添加到其中包含FB注释的内容框中。会发生什么是我将FB注释iframe放在盒子的内容之上(好像它有一个绝对位置/浮动。猜测这与FB注释在jScrollPane之后初始化有关。

编辑:

现在,我真正想要的是将ColorBox,Facebook评论和jScrollPane结合起来,很快就会头疼:

$('.mybox').colorbox({  innerWidth: 640, innerHeight: 480, scrolling: false, onComplete: function() {
    $('#cboxLoadedContent').jScrollPane({
// Init FB Comments here instead? Then call jScrollPane?
      showArrows: true,
      scrollbarWidth: 15,
      scrollbarMargin: 0
      });
    }, 
    onClosed: function() {
// What would happen here if I need to listen for FB Comments also?
      $('#cboxContent').jScrollPaneRemove(); 
    }
    });

对不起,如果我的问题有点不清楚,已经很晚了,我已经在屏幕前停留了10个多小时。

1 个答案:

答案 0 :(得分:1)

使用xfbml.render事件:

FB.Event.subscribe('xfbml.render', function() {
    console.log('Loaded!');
});