We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 359b6a2 commit bcce7c6Copy full SHA for bcce7c6
Resources/Public/JavaScript/PageView/PageView.js
@@ -767,7 +767,7 @@ dlfViewer.prototype.initLoadFulltexts = function (visiblePages) {
767
const fulltext = this.docController.findFileByKind(visiblePages[i].pageNo, 'fulltext');
768
if (fulltext !== undefined) {
769
if (!(key in this.fulltextsLoaded_) && dlfUtils.isFulltextDescriptor(fulltext)) {
770
- fulltextEntry = dlfFullTextUtils.fetchFullTextDataFromServer(fulltext.url, image, xOffset);
+ const fulltextEntry = dlfFullTextUtils.fetchFullTextDataFromServer(fulltext.url, image, xOffset);
771
this.fulltextsLoaded_[key] = fulltextEntry;
772
}
773
} else {
0 commit comments