diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-09-15 14:16:23 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-09-27 21:41:00 -0400 |
commit | 95a7fd81f5ff3773618ad697dc4385d40ba6fb54 (patch) | |
tree | c88bc4abf51cfc006106d14820e82b8eb3ced702 /ext/fg/js/float.js | |
parent | 355fb29c3b532da279a54114c5b4b976fce3ff20 (diff) |
Use raw element references for container and spinner
Diffstat (limited to 'ext/fg/js/float.js')
-rw-r--r-- | ext/fg/js/float.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/float.js b/ext/fg/js/float.js index f75b35b8..2e952efb 100644 --- a/ext/fg/js/float.js +++ b/ext/fg/js/float.js @@ -19,7 +19,7 @@ class DisplayFloat extends Display { constructor() { - super($('#spinner'), $('#definitions')); + super(document.querySelector('#spinner'), document.querySelector('#definitions')); this.autoPlayAudioTimer = null; this.styleNode = null; |