From 4723acb7487d32f2c0d225d4b50fe64a760b23b6 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Mon, 27 Sep 2010 17:34:37 -0400 Subject: [PATCH] Fix undefined entity in about:pentadactyl. Fix about:pentadactyl for at least *some* FF36 users. --- common/components/protocols.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/components/protocols.js b/common/components/protocols.js index 6e590716..2edf08a5 100644 --- a/common/components/protocols.js +++ b/common/components/protocols.js @@ -156,6 +156,10 @@ Dactyl.prototype = { return fakeChannel(uri); } }; +try { + Dactyl.prototype.__proto__ = Cc["@dactyl.googlecode.com/base/dactyl"].getService().wrappedJSObject; +} +catch (e) {} function AboutHandler() {} AboutHandler.prototype = {