- 608 名前:名無しさん@お腹いっぱい。 mailto:sage [2012/01/10(火) 23:42:56.47 ID:rIItDE5r0]
- >>607
それで基本OKだけど進む・戻るボタンの状態が更新されないのと 現在のページから次のページに進んだ時に元のページに戻れなくなるのを対策したのが以下 (function(){ var history = gBrowser.webNavigation.sessionHistory; if(history.count > 0){ var currentEntry = history.getEntryAtIndex(history.index, false); history.PurgeHistory(history.count); history.QueryInterface(Ci.nsISHistoryInternal); history.addEntry(currentEntry, true); ["Back", "BackOrBackDuplicate", "Forward", "ForwardOrForwardDuplicate"].forEach(function(id){ document.getElementById("Browser:" + id).setAttribute("disabled", "true"); }); } })();
|

|