From 91c3b57c9717721914390fa796416584cb5b9c55 Mon Sep 17 00:00:00 2001 From: Sukhbir Singh Date: Sun, 6 May 2018 18:48:06 -0400 Subject: Add support for Thunderbird 60 See https://wiki.mozilla.org/Thunderbird/Add-ons_Guide_57 for changes relevant to Thunderbird 60. This commit also bumps up the minimum supported version to Thunderbird 52. --- chrome/content/accountWizard/accountWizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/content/accountWizard/accountWizard.js') diff --git a/chrome/content/accountWizard/accountWizard.js b/chrome/content/accountWizard/accountWizard.js index cdd02f0..b04b2a9 100644 --- a/chrome/content/accountWizard/accountWizard.js +++ b/chrome/content/accountWizard/accountWizard.js @@ -589,7 +589,7 @@ BitmaskAccountWizard.prototype = { id: "next_button", action: makeCallback(this, this.onNext) }, { id: "create_button", action: makeCallback(this, this.onCreate) }, ]; - for each (let button in buttons) { + for (let button of buttons) { button.e = e(button.id); if (button.e.hidden || button.e.disabled) { continue; -- cgit v1.2.3