1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 21:48:00 +01:00

Fix generating incorrect help pages on Firefox 4.

This commit is contained in:
Kris Maglione
2011-03-11 07:10:12 -05:00
parent 5e6b47009c
commit d8c5f87872
3 changed files with 9 additions and 6 deletions

View File

@@ -311,7 +311,7 @@ var Buffer = Module("buffer", {
allFrames: function allFrames(win, focusedFirst) {
let frames = [];
(function rec(frame) {
if (frame.document.body instanceof HTMLBodyElement)
if (true || frame.document.body instanceof HTMLBodyElement)
frames.push(frame);
Array.forEach(frame.frames, rec);
})(win || content);