diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-05-21 17:54:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-21 17:54:57 -0400 |
commit | 5dbc284d53bf77ad259aed8108ffb931c72a9621 (patch) | |
tree | 5904c8e399ba47432a1234bc48d06af57126b76c /ext | |
parent | 8b1d4450f58a2cfdac315b54babc6db33f975791 (diff) |
Simplify assignment of _contentType = 'clear' (#2154)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/js/display/display.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/js/display/display.js b/ext/js/display/display.js index 600df954..f9153420 100644 --- a/ext/js/display/display.js +++ b/ext/js/display/display.js @@ -637,8 +637,7 @@ class Display extends EventDispatcher { this._setContentExtensionUnloaded(); break; default: - type = 'clear'; - this._contentType = type; + this._contentType = 'clear'; this._clearContent(); break; } |