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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user