1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 18:47:58 +01:00

Fix FF36. Closes issue #416.

--HG--
extra : rebase_source : 2620be0acd8ff137fb0dded7a41584f09d56fe58
This commit is contained in:
Kris Maglione
2011-03-05 17:32:51 -05:00
parent 0b4592cd88
commit 61c1111aab

View File

@@ -26,7 +26,7 @@ var ioService = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOServi
var systemPrincipal = Cc["@mozilla.org/systemprincipal;1"].getService(Ci.nsIPrincipal);
var DNE = "resource://dactyl/content/does/not/exist";
var _DNE = ioService.newChannel(DNE, null, null).name;
var _DNE;
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
@@ -133,6 +133,7 @@ function Dactyl() {
require(global, "config");
require(global, "services");
require(global, "util");
_DNE = ioService.newChannel(DNE, null, null).name;
// Doesn't belong here:
AboutHandler.prototype.register();