From b34fe0b741263163ae8cc26859a3fd9af3a2affa Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Mon, 18 Oct 2010 21:39:19 -0400 Subject: [PATCH] =?UTF-8?q?Work=20around=20new=20problems=20introduced=20b?= =?UTF-8?q?y=20recent=20J=C3=A4gerMonkey=20changes.=20Closes=20issue=20#95?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/content/dactyl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/dactyl.js b/common/content/dactyl.js index ae40e705..7f9e2960 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -298,7 +298,7 @@ const Dactyl = Module("dactyl", { if (!context) context = userContext; context[EVAL_STRING] = str; - return Cu.evalInSandbox("with (window) { eval(" + EVAL_STRING + ") }", context, "1.8", fileName, lineNumber); + return Cu.evalInSandbox("with (window) { this.eval(" + EVAL_STRING + ") }", context, "1.8", fileName, lineNumber); }, /**