Firefox AutoPagerize と pbtweet の併用で Twitter のページングがおかしくなる
環境
- Firefox 3.5.3
- Greasemonkey 0.8.2009123.1
- AutoPagerize 0.0.41
- pbtweet 1.4.10
解決
pbtweet のページングをオフにすることで回避できる。
以下のようにページングに関する処理をコメントアウトする。
//--autoScrolll--//
/*
var during_pagination = true;
setTimeout(function(){if(!document.getElementById("autopagerize_style")){init_autoPager()}}, 1500);
function init_autoPager(){
during_pagination = false;
window.addEventListener("scroll", function(){add_scroll_event()}, false);
}
*/