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:
parent
6d804d657f
commit
b4edcce296
@ -36,7 +36,6 @@ class PDFFindBar {
|
|||||||
this.entireWord = options.entireWordCheckbox || null;
|
this.entireWord = options.entireWordCheckbox || null;
|
||||||
this.findMsg = options.findMsg || null;
|
this.findMsg = options.findMsg || null;
|
||||||
this.findResultsCount = options.findResultsCount || null;
|
this.findResultsCount = options.findResultsCount || null;
|
||||||
this.findStatusIcon = options.findStatusIcon || null;
|
|
||||||
this.findPreviousButton = options.findPreviousButton || null;
|
this.findPreviousButton = options.findPreviousButton || null;
|
||||||
this.findNextButton = options.findNextButton || null;
|
this.findNextButton = options.findNextButton || null;
|
||||||
this.findController = options.findController || null;
|
this.findController = options.findController || null;
|
||||||
|
@ -137,7 +137,6 @@ function getViewerConfiguration() {
|
|||||||
entireWordCheckbox: document.getElementById('findEntireWord'),
|
entireWordCheckbox: document.getElementById('findEntireWord'),
|
||||||
findMsg: document.getElementById('findMsg'),
|
findMsg: document.getElementById('findMsg'),
|
||||||
findResultsCount: document.getElementById('findResultsCount'),
|
findResultsCount: document.getElementById('findResultsCount'),
|
||||||
findStatusIcon: document.getElementById('findStatusIcon'),
|
|
||||||
findPreviousButton: document.getElementById('findPrevious'),
|
findPreviousButton: document.getElementById('findPrevious'),
|
||||||
findNextButton: document.getElementById('findNext'),
|
findNextButton: document.getElementById('findNext'),
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user