diff options
Diffstat (limited to 'ext/js/display/display.js')
-rw-r--r-- | ext/js/display/display.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/js/display/display.js b/ext/js/display/display.js index d286bd5e..21bdc5a4 100644 --- a/ext/js/display/display.js +++ b/ext/js/display/display.js @@ -20,7 +20,6 @@ * DisplayGenerator * DisplayHistory * DisplayNotification - * DocumentUtil * ElementOverflowController * FrameEndpoint * Frontend @@ -121,7 +120,6 @@ class Display extends EventDispatcher { this._query = ''; this._fullQuery = ''; this._queryOffset = 0; - this._documentUtil = new DocumentUtil(); this._progressIndicator = document.querySelector('#progress-indicator'); this._progressIndicatorTimer = null; this._progressIndicatorVisible = new DynamicProperty(false); @@ -130,7 +128,6 @@ class Display extends EventDispatcher { this._queryParserContainer = document.querySelector('#query-parser-container'); this._queryParser = new QueryParser({ getSearchContext: this._getSearchContext.bind(this), - documentUtil: this._documentUtil, japaneseUtil }); this._contentScrollElement = document.querySelector('#content-scroll'); @@ -1498,7 +1495,6 @@ class Display extends EventDispatcher { this._contentTextScanner = new TextScanner({ node: window, getSearchContext: this._getSearchContext.bind(this), - documentUtil: this._documentUtil, searchTerms: true, searchKanji: false, searchOnClick: true, |