1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Avoid getting |childNodes| twice in PDFPageView_reset, by using the variable instead

This commit is contained in:
Jonas Jenwald 2015-01-26 12:22:09 +01:00
parent dd7fd0b665
commit 8471bb3206

View file

@ -120,7 +120,7 @@ var PDFPageView = (function PDFPageViewClosure() {
var currentZoomLayer = this.zoomLayer || null;
var currentAnnotationNode = (keepAnnotations && this.annotationLayer &&
this.annotationLayer.div) || null;
for (var i = div.childNodes.length - 1; i >= 0; i--) {
for (var i = childNodes.length - 1; i >= 0; i--) {
var node = childNodes[i];
if (currentZoomLayer === node || currentAnnotationNode === node) {
continue;