From d2fedd67f7f643b302ba43a90e39558dde63d048 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 29 Sep 2010 15:39:12 -0400 Subject: [PATCH] Add addon download start message. Its absense makes me uncomfortable. --- common/content/dactyl.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 29b0f88e..39564fb8 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -1444,7 +1444,9 @@ const Dactyl = Module("dactyl", { const addonListener = { onNewInstall: function (install) {}, - onDownloadStarted: function (install) {}, + onDownloadStarted: function (install) { + dactyl.echomsg("Add-on download started: " + (install.name || install.sourceURI.spec)); + }, onDownloadProgress: function (install) {}, onDownloadEnded: function (install) { dactyl.echomsg("Add-on download complete: " + (install.name || install.sourceURI.spec));