From 2a70f7cd8b46d9f6249ea390f40d22a49c5461bf Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Thu, 11 Sep 2008 20:24:32 +0000 Subject: [PATCH] fixed storage module loading for muttator --- content/liberator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/liberator.js b/content/liberator.js index f88c470a..3cc45f79 100644 --- a/content/liberator.js +++ b/content/liberator.js @@ -1154,7 +1154,7 @@ const liberator = (function () //{{{ //}}} })(); //}}} -Components.utils.import("resource://vimperator/storage.jsm", liberator); +Components.utils.import("resource://" + liberator.config.name.toLowerCase() + "/storage.jsm", liberator); // called when the chrome is fully loaded and before the main window is shown window.addEventListener("load", liberator.startup, false);