diff options
Diffstat (limited to 'ext/js/display/display.js')
-rw-r--r-- | ext/js/display/display.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/js/display/display.js b/ext/js/display/display.js index ed1af17e..ed708b3a 100644 --- a/ext/js/display/display.js +++ b/ext/js/display/display.js @@ -1538,9 +1538,7 @@ class Display extends EventDispatcher { } _triggerContentUpdateStart() { - let {content} = this._history; - if (typeof content !== 'object' || content === null) { content = {}; } - this.trigger('contentUpdateStart', {type: this._contentType, query: this._query, content}); + this.trigger('contentUpdateStart', {type: this._contentType, query: this._query}); } _triggerContentUpdateEntry(dictionaryEntry, element, index) { |