Browse Source

PDF.js version 1.1.529

master v1.1.529
Pdf Bot 9 years ago
parent
commit
74377ba3c2
  1. 2
      bower.json
  2. 9
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 9
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.1.527", "version": "1.1.529",
"main": [ "main": [
"build/pdf.js", "build/pdf.js",
"build/pdf.worker.js" "build/pdf.worker.js"

9
build/pdf.combined.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.1.527'; PDFJS.version = '1.1.529';
PDFJS.build = '2096a2a'; PDFJS.build = 'd1d81de';
(function pdfjsWrapper() { (function pdfjsWrapper() {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
@ -9714,7 +9714,8 @@ var Dict = (function DictClosure() {
// Same as get(), but dereferences all elements if the result is an Array. // Same as get(), but dereferences all elements if the result is an Array.
getArray: function Dict_getArray(key1, key2, key3) { getArray: function Dict_getArray(key1, key2, key3) {
var value = this.get(key1, key2, key3); var value = this.get(key1, key2, key3);
if (!isArray(value)) { var xref = this.xref;
if (!isArray(value) || !xref) {
return value; return value;
} }
value = value.slice(); // Ensure that we don't modify the Dict data. value = value.slice(); // Ensure that we don't modify the Dict data.
@ -9722,7 +9723,7 @@ var Dict = (function DictClosure() {
if (!isRef(value[i])) { if (!isRef(value[i])) {
continue; continue;
} }
value[i] = this.xref.fetch(value[i]); value[i] = xref.fetch(value[i]);
} }
return value; return value;
}, },

4
build/pdf.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.1.527'; PDFJS.version = '1.1.529';
PDFJS.build = '2096a2a'; PDFJS.build = 'd1d81de';
(function pdfjsWrapper() { (function pdfjsWrapper() {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it

9
build/pdf.worker.js vendored

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.1.527'; PDFJS.version = '1.1.529';
PDFJS.build = '2096a2a'; PDFJS.build = 'd1d81de';
(function pdfjsWrapper() { (function pdfjsWrapper() {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
@ -3258,7 +3258,8 @@ var Dict = (function DictClosure() {
// Same as get(), but dereferences all elements if the result is an Array. // Same as get(), but dereferences all elements if the result is an Array.
getArray: function Dict_getArray(key1, key2, key3) { getArray: function Dict_getArray(key1, key2, key3) {
var value = this.get(key1, key2, key3); var value = this.get(key1, key2, key3);
if (!isArray(value)) { var xref = this.xref;
if (!isArray(value) || !xref) {
return value; return value;
} }
value = value.slice(); // Ensure that we don't modify the Dict data. value = value.slice(); // Ensure that we don't modify the Dict data.
@ -3266,7 +3267,7 @@ var Dict = (function DictClosure() {
if (!isRef(value[i])) { if (!isRef(value[i])) {
continue; continue;
} }
value[i] = this.xref.fetch(value[i]); value[i] = xref.fetch(value[i]);
} }
return value; return value;
}, },

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.1.527", "version": "1.1.529",
"description": "Generic build of Mozilla's PDF.js library.", "description": "Generic build of Mozilla's PDF.js library.",
"keywords": [ "keywords": [
"Mozilla", "Mozilla",

Loading…
Cancel
Save