diff options
Diffstat (limited to 'common/modules/overlay.jsm')
-rw-r--r-- | common/modules/overlay.jsm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/modules/overlay.jsm b/common/modules/overlay.jsm index 7da5e57f..8af99d25 100644 --- a/common/modules/overlay.jsm +++ b/common/modules/overlay.jsm @@ -4,6 +4,8 @@ // given in the LICENSE.txt file included with this file. "use strict"; +try { + Components.utils.import("resource://dactyl/bootstrap.jsm"); defineModule("overlay", { exports: ["ModuleBase"], @@ -276,4 +278,6 @@ var Overlay = Module("Overlay", { } }); +} catch(e){ if (!e.stack) e = Error(e); dump(e.fileName+":"+e.lineNumber+": "+e+"\n" + e.stack); } + // vim: set fdm=marker sw=4 ts=4 et ft=javascript: |