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

Fix undefined entity in about:pentadactyl. Fix about:pentadactyl for at least *some* FF36 users.

This commit is contained in:
Kris Maglione
2010-09-27 17:34:37 -04:00
parent 53b83e378a
commit 4723acb748

View File

@@ -156,6 +156,10 @@ Dactyl.prototype = {
return fakeChannel(uri); return fakeChannel(uri);
} }
}; };
try {
Dactyl.prototype.__proto__ = Cc["@dactyl.googlecode.com/base/dactyl"].getService().wrappedJSObject;
}
catch (e) {}
function AboutHandler() {} function AboutHandler() {}
AboutHandler.prototype = { AboutHandler.prototype = {