summaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to 'src/content')
-rw-r--r--src/content/dynamicNS.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/content/dynamicNS.js b/src/content/dynamicNS.js
deleted file mode 100644
index 51a2701..0000000
--- a/src/content/dynamicNS.js
+++ /dev/null
@@ -1,21 +0,0 @@
-'use strict';
-
-// ensure the order which manifest scripts and dynamically registered scripts
-// are executed in doesn't matter for initialization, by using a stub.
-
-if (!this.ns) {
- let deferredSetup = null;
- let nsStub = this.ns = {
- config: {},
- setup(permissions, MARKER) {
- deferredSetup = [permissions, MARKER];
- },
- merge: ns => {
- ns.config = Object.assign(ns.config, nsStub.config);
- this.ns = ns;
- if (deferredSetup) {
- ns.setup(...deferredSetup);
- }
- }
- }
-}