diff options
Diffstat (limited to 'ext/mixed/js/display.js')
| -rw-r--r-- | ext/mixed/js/display.js | 4 | 
1 files changed, 3 insertions, 1 deletions
| 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) { |