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

Closes issue #885. Closes issue #886.

This commit is contained in:
Kris Maglione
2012-06-25 23:58:54 -04:00
parent bb9e343696
commit e9c33a4c03
2 changed files with 3 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ lazyRequire("config", ["config"]);
lazyRequire("contexts", ["Contexts", "contexts"]);
lazyRequire("storage", ["File", "storage"]);
lazyRequire("styles", ["styles"]);
lazyRequire("template", ["template"]);
// TODO: why are we passing around strings rather than file objects?
/**

View File

@@ -9,7 +9,8 @@ let { getOwnPropertyNames } = Object;
try {
defineModule("javascript", {
exports: ["JavaScript", "javascript"]
exports: ["JavaScript", "javascript"],
require: ["util"]
});
lazyRequire("template", ["template"]);