aboutsummaryrefslogtreecommitdiff
path: root/common/connection_types.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/connection_types.js')
-rw-r--r--common/connection_types.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/common/connection_types.js b/common/connection_types.js
index cc3c976..e227532 100644
--- a/common/connection_types.js
+++ b/common/connection_types.js
@@ -5,18 +5,18 @@
* Redistribution terms are gathered in the `copyright' file.
*/
-"use strict";
-
/*
* Those need to be strings so they can be used as 'name' parameter
* to browser.runtime.connect()
*/
-(() => {
- const CONNECTION_TYPE = {
- REMOTE_STORAGE : "0",
- PAGE_ACTIONS : "1"
- };
+const CONNECTION_TYPE = {
+ REMOTE_STORAGE : "0",
+ PAGE_ACTIONS : "1"
+};
- window.CONNECTION_TYPE = CONNECTION_TYPE;
-})();
+/*
+ * EXPORTS_START
+ * EXPORT CONNECTION_TYPE
+ * EXPORTS_END
+ */