aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/search.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-23 18:26:34 -0400
committerGitHub <noreply@github.com>2020-04-23 18:26:34 -0400
commit9216d1862fa8d0f51fe1dba603c2643aa8ef4215 (patch)
tree74f99b338dae8ecf6737eb3c9a234c26abed419a /ext/bg/js/search.js
parent6a39b0cd7a5f3145300fe48942b55122734ae0a5 (diff)
parentd8276a9d5d119edf1747593608d3e135947019f0 (diff)
Merge pull request #463 from toasted-nutbread/explicit-entry-point
Explicit entry points
Diffstat (limited to 'ext/bg/js/search.js')
-rw-r--r--ext/bg/js/search.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js
index 006536c0..684ea6d3 100644
--- a/ext/bg/js/search.js
+++ b/ext/bg/js/search.js
@@ -73,12 +73,6 @@ class DisplaySearch extends Display {
]);
}
- static create() {
- const instance = new DisplaySearch();
- instance.prepare();
- return instance;
- }
-
async prepare() {
try {
await super.prepare();
@@ -377,5 +371,3 @@ class DisplaySearch extends Display {
}
}
}
-
-DisplaySearch.instance = DisplaySearch.create();