Browse Source

Use unique variable names in toplevelPagesDict function.

Kalervo Kujala 14 years ago
parent
commit
24babb6536
  1. 10
      pdf.js

10
pdf.js

@ -3447,12 +3447,12 @@ var Catalog = (function() {
constructor.prototype = { constructor.prototype = {
get toplevelPagesDict() { get toplevelPagesDict() {
var obj = this.catDict.get('Pages'); var pagesObj = this.catDict.get('Pages');
assertWellFormed(IsRef(obj), 'invalid top-level pages reference'); assertWellFormed(IsRef(pagesObj), 'invalid top-level pages reference');
var obj = this.xref.fetch(obj); var xrefObj = this.xref.fetch(pagesObj);
assertWellFormed(IsDict(obj), 'invalid top-level pages dictionary'); assertWellFormed(IsDict(xrefObj), 'invalid top-level pages dictionary');
// shadow the prototype getter // shadow the prototype getter
return shadow(this, 'toplevelPagesDict', obj); return shadow(this, 'toplevelPagesDict', xrefObj);
}, },
get documentOutline() { get documentOutline() {
function convertIfUnicode(str) { function convertIfUnicode(str) {

Loading…
Cancel
Save