1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-31 12:35:45 +01:00

Fix live update issue.

This commit is contained in:
Kris Maglione
2011-02-08 22:43:10 -05:00
parent 8aa02f6d7a
commit f904799f9d
3 changed files with 6 additions and 6 deletions

View File

@@ -14,9 +14,9 @@ var storage = Components.classes["@mozilla.org/fuel/application;1"]
var JSMLoader = storage.get("dactyl.JSMLoader", undefined);
if (!JSMLoader || JSMLoader.bump != 3)
if (!JSMLoader || JSMLoader.bump != 4)
JSMLoader = {
bump: 3,
bump: 4,
builtin: Components.utils.Sandbox(this),
canonical: {},
factories: [],
@@ -33,7 +33,7 @@ if (!JSMLoader || JSMLoader.bump != 3)
this.storage.set("dactyl.JSMLoader", this);
let base = JSMLoader.load("base.jsm", global);
let base = this.load("base.jsm", global);
global.EXPORTED_SYMBOLS = base.EXPORTED_SYMBOLS;
global.JSMLoader = this;
base.JSMLoader = this;