1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-07 00:45:46 +01:00

Remove bare references to 'content'.

This commit is contained in:
Kris Maglione
2010-10-04 22:09:54 -04:00
parent 2012279ad9
commit 9af8705807
5 changed files with 20 additions and 14 deletions

View File

@@ -16,7 +16,13 @@
return sandbox;
}
const jsmodules = {};
const modules = { __proto__: jsmodules, jsmodules: jsmodules, newContext: newContext, window: window };
const modules = {
__proto__: jsmodules,
get content() window.content,
jsmodules: jsmodules,
newContext: newContext,
window: window
};
modules.modules = modules;
const BASE = "chrome://dactyl/content/";