diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-09-15 19:48:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 19:48:58 -0400 |
commit | 79ef6e151edec51b2484cdc00242dde71958ab3b (patch) | |
tree | c16519757900ac6dfc5678982ddfb48ef49da21b /ext/bg/js/background-main.js | |
parent | f997f017422bba2527e620000e3a938b916f25ac (diff) |
Cleanup unused utils (#832)
* Remove api.optionsSave
* Remove getOptionsMutable and getOptionsFullMutable
* Remove util.js
* Remove yomichanBackend
Diffstat (limited to 'ext/bg/js/background-main.js')
-rw-r--r-- | ext/bg/js/background-main.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/bg/js/background-main.js b/ext/bg/js/background-main.js index 1b6bd138..6b64ad37 100644 --- a/ext/bg/js/background-main.js +++ b/ext/bg/js/background-main.js @@ -21,8 +21,5 @@ (() => { const backend = new Backend(); - if (typeof window === 'object' && window !== null) { - window.yomichanBackend = backend; - } backend.prepare(); })(); |