1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 13:28:11 +01:00

Add addon download start message. Its absense makes me uncomfortable.

This commit is contained in:
Kris Maglione
2010-09-29 15:39:12 -04:00
parent 455059dd76
commit d2fedd67f7

View File

@@ -1444,7 +1444,9 @@ const Dactyl = Module("dactyl", {
const addonListener = { const addonListener = {
onNewInstall: function (install) {}, onNewInstall: function (install) {},
onDownloadStarted: function (install) {}, onDownloadStarted: function (install) {
dactyl.echomsg("Add-on download started: " + (install.name || install.sourceURI.spec));
},
onDownloadProgress: function (install) {}, onDownloadProgress: function (install) {},
onDownloadEnded: function (install) { onDownloadEnded: function (install) {
dactyl.echomsg("Add-on download complete: " + (install.name || install.sourceURI.spec)); dactyl.echomsg("Add-on download complete: " + (install.name || install.sourceURI.spec));