mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 01:58:06 +02:00
Add strict equalities in src/core/annotation.js
This commit is contained in:
parent
6d6e09b469
commit
9cb09324d2
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ var WidgetAnnotation = (function WidgetAnnotationClosure() {
|
|||
var j, jj;
|
||||
for (j = 0, jj = kids.length; j < jj; j++) {
|
||||
var kidRef = kids[j];
|
||||
if (kidRef.num == ref.num && kidRef.gen == ref.gen) {
|
||||
if (kidRef.num === ref.num && kidRef.gen === ref.gen) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue