From 4116196a69bf8669c5fb8531f1fcccb117b18d8c Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Thu, 3 Feb 2011 12:44:45 -0500 Subject: [PATCH] Hopefully fix load order bug. --- common/content/modes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/modes.js b/common/content/modes.js index 0f5ba7a7..93c81e1e 100644 --- a/common/content/modes.js +++ b/common/content/modes.js @@ -487,7 +487,7 @@ var Modes = Module("modes", { function () { events.feedkeys(""); }); }, prefs: function () { - prefs.watch("accessibility.browsewithcaret", modes.closure.onCaretChange); + prefs.watch("accessibility.browsewithcaret", function () modes.onCaretChange.apply(modes, arguments)); } });