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

Fix :runtime completion.

This commit is contained in:
Kris Maglione
2010-12-17 20:01:59 -05:00
parent 754d490a56
commit 8f4d26f9ac
11 changed files with 39 additions and 38 deletions

View File

@@ -260,7 +260,7 @@ const Hints = Module("hints", {
* Pushes the hints into the pageHints object, but does not display them.
*
* @param {Window} win The window for which to generate hints.
* @default window.content
* @default content
*/
_generate: function _generate(win, offsets) {
if (!win)
@@ -845,7 +845,7 @@ const Hints = Module("hints", {
this._canUpdate = false;
this._continue = Boolean(opts.continue);
this._top = opts.window || window.content;
this._top = opts.window || content;
this._top.addEventListener("resize", this._resizeTimer.closure.tell, true);
this._generate();