We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebd4be5 commit 5e0ca68Copy full SHA for 5e0ca68
MessageManager/lib/main.js
@@ -2,20 +2,16 @@
2
3
"use strict";
4
5
-const { MyExtension } = require("./myExtension.js");
6
const { MyPanel } = require("./myPanel.js");
7
8
/**
9
* Application entry point. Read MDN to learn more about Add-on SDK:
10
* https://developer.mozilla.org/en-US/Add-ons/SDK
11
*/
12
function main(options, callbacks) {
13
- // Initialize extension object (singleton).
14
- MyExtension.initialize(options);
15
}
16
17
function onUnload(reason) {
18
- MyExtension.shutdown(reason);
19
20
21
// Exports from this module
MessageManager/lib/myExtension.js
0 commit comments