1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 10:04:11 +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

@@ -71,6 +71,8 @@ var AutoCmdHive = Class("AutoCmdHive", Contexts.Hive, {
*/
var AutoCommands = Module("autocommands", {
init: function () {
if (config.haveGecko("26"))
delete config.autocommands.DownloadPost; // FIXME
},
get activeHives() contexts.allGroups.autocmd.filter(h => h._store.length),