08/02/07 00:08:52 UE3wsm0O0
>>20
17の中身。
954 名無しさん@お腹いっぱい。 sage 2007/11/04(日) 12:12:34 ID:Rlrl4aFU0
>>892
>>887に対して ver1.11の修正していただいたのですが,
新しいタブでGoogleで検索後, 同タブで 別の検索語句で検索した際, ドキュメントloadイベントにより window.AutoPagerize等 オブジェクト が初期化されない 不具合があるようです。
AutoPagerizeの場合, 同スクリプト内の
if (typeof(window.AutoPagerize) == 'undefined') {
window.AutoPagerize = {}
window.AutoPagerize.addFilter = function(f) {
alert("push\n"+f.toString())
AutoPager.filters.push(f)
}
}
を
//if (typeof(window.AutoPagerize) == 'undefined') {
window.AutoPagerize = {}
window.AutoPagerize.addFilter = function(f) {
alert("push\n"+f.toString())
AutoPager.filters.push(f)
}
//}
としないと, filterが機能しないようです。