1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 15:52:29 +01:00

minor refactoring of hints#generate - calling generate on frames

This commit is contained in:
Doug Kearns
2008-10-17 12:27:43 +00:00
parent 1e1a945f37
commit 349eed1b08

View File

@@ -136,8 +136,7 @@ function Hints() //{{{
docs.push({ doc: doc, start: start, end: pageHints.length - 1 }); docs.push({ doc: doc, start: start, end: pageHints.length - 1 });
// also generate hints for frames // also generate hints for frames
for (let i = 0; i < win.frames.length; i++) Array.forEach(win.frames, function (frame) { generate(frame); });
generate(win.frames[i]);
return true; return true;
} }