summaryrefslogtreecommitdiff
path: root/ext/mixed
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mixed')
-rw-r--r--ext/mixed/css/display.css1
-rw-r--r--ext/mixed/js/display.js4
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) {