1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 13:14:12 +01:00

Fix breakage after window closure caused by undeclared variable.

This commit is contained in:
Kris Maglione
2014-02-17 14:11:24 -08:00
parent 93665ed5ed
commit 48177b7405
2 changed files with 8 additions and 5 deletions

View File

@@ -55,7 +55,8 @@ var JavaScript = Module("javascript", {
lazyInit: true,
newContext: function () this.modules.newContext(this.modules.userContext, false, "Dactyl JS Temp Context"),
newContext: function () this.modules.newContext(this.modules.userContext, false,
"Dactyl JS Temp Context"),
completers: Class.Memoize(() => Object.create(JavaScript.completers)),