Remove unused findStatusIcon property from PDFFindBar instances

The property is intended to contain a reference to a DOM element, which not only is nowhere to be found *now* but appears to never have existed in the first place.
This commit is contained in:
Jonas Jenwald 2018-09-02 02:29:23 +02:00
parent 6d804d657f
commit b4edcce296
2 changed files with 0 additions and 2 deletions

View File

@ -36,7 +36,6 @@ class PDFFindBar {
this.entireWord = options.entireWordCheckbox || null;
this.findMsg = options.findMsg || null;
this.findResultsCount = options.findResultsCount || null;
this.findStatusIcon = options.findStatusIcon || null;
this.findPreviousButton = options.findPreviousButton || null;
this.findNextButton = options.findNextButton || null;
this.findController = options.findController || null;

View File

@ -137,7 +137,6 @@ function getViewerConfiguration() {
entireWordCheckbox: document.getElementById('findEntireWord'),
findMsg: document.getElementById('findMsg'),
findResultsCount: document.getElementById('findResultsCount'),
findStatusIcon: document.getElementById('findStatusIcon'),
findPreviousButton: document.getElementById('findPrevious'),
findNextButton: document.getElementById('findNext'),
},