diff options
author | Sukhbir Singh <sukhbir@torproject.org> | 2018-05-06 18:48:06 -0400 |
---|---|---|
committer | Sukhbir Singh <sukhbir@torproject.org> | 2018-05-06 18:48:06 -0400 |
commit | 91c3b57c9717721914390fa796416584cb5b9c55 (patch) | |
tree | 1b86d7d43813e3e0a4fafa2ae2c9fba883d12523 /chrome/content/accountWizard/accountWizard.js | |
parent | b154fe2aa6fab711f8e5fe6ff16756b41d2920d7 (diff) |
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.
Diffstat (limited to 'chrome/content/accountWizard/accountWizard.js')
-rw-r--r-- | chrome/content/accountWizard/accountWizard.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; |