1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-12 04:25:47 +01:00

Temporarily disable loading of the downloads module in FF26.

nsIDownloadManager has been removed so the module needs updating to utilise the
replacement Downloads.jsm.
This commit is contained in:
Doug Kearns
2013-12-17 00:03:58 +11:00
parent da049fa175
commit 94c28cc2aa
5 changed files with 17 additions and 1 deletions

View File

@@ -45,6 +45,9 @@ var ConfigBase = Class("ConfigBase", {
* initialization code. Must call superclass's init function.
*/
init: function init() {
if (config.haveGecko("26"))
this.modules.global = this.modules.global.filter(m => m != "downloads"); // FIXME
this.loadConfig();
this.features.push = deprecated("Set.add", function push(feature) Set.add(this, feature));