diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-27 15:10:51 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-01-16 22:39:26 -0500 |
commit | 24832be63693d8f04797ed45041ffbd3e8ac3f9d (patch) | |
tree | effea0e7cf3246c55f5fb15ede350a9a0755eee6 /ext/mixed | |
parent | a50e2fb0f12838673543131c02e7ca37fe4b66fb (diff) |
Update how spinner visibility is controlled
Diffstat (limited to 'ext/mixed')
-rw-r--r-- | ext/mixed/css/display.css | 1 | ||||
-rw-r--r-- | ext/mixed/js/display.js | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index ff42771a..ce64cc49 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -50,7 +50,6 @@ ol, ul { } #spinner { - display: none; position: fixed; z-index: 1; right: 0.36em; diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index f61e76b5..f5b2225d 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -705,7 +705,9 @@ class Display { } setSpinnerVisible(visible) { - this.spinner.style.display = visible ? 'block' : ''; + if (this.spinner !== null) { + this.spinner.hidden = !visible; + } } getEntry(index) { |