diff options
Diffstat (limited to 'services/automation/ServicesAutomation.sys.mjs')
-rw-r--r-- | services/automation/ServicesAutomation.sys.mjs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/services/automation/ServicesAutomation.sys.mjs b/services/automation/ServicesAutomation.sys.mjs index 24316d8827..fd5a58cba9 100644 --- a/services/automation/ServicesAutomation.sys.mjs +++ b/services/automation/ServicesAutomation.sys.mjs @@ -139,11 +139,11 @@ export var Authentication = { let mainWindow = Services.wm.getMostRecentWindow("navigator:browser"); let newtab = mainWindow.gBrowser.addWebTab(uri); let win = mainWindow.gBrowser.getBrowserForTab(newtab); - win.addEventListener("load", function (e) { + win.addEventListener("load", function () { LOG("load"); }); - win.addEventListener("loadstart", function (e) { + win.addEventListener("loadstart", function () { LOG("loadstart"); }); @@ -299,7 +299,7 @@ export var Sync = { await this.wipeLogs(); }, - observe(subject, topic, data) { + observe(subject, topic) { LOG("Event received " + topic); }, |