Browse Source

PDF.js version 1.1.116

master v1.1.116
Pdf Bot 10 years ago
parent
commit
b9292eb207
  1. 2
      bower.json
  2. 11
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 11
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

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

11
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.114'; PDFJS.version = '1.1.116';
PDFJS.build = '3fd44fd'; PDFJS.build = '6d2d854';
(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
@ -18156,8 +18156,13 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
var data = diffEncoding[j]; var data = diffEncoding[j];
if (isNum(data)) { if (isNum(data)) {
index = data; index = data;
} else { } else if (isName(data)) {
differences[index++] = data.name; differences[index++] = data.name;
} else if (isRef(data)) {
diffEncoding[j--] = xref.fetch(data);
continue;
} else {
error('Invalid entry in \'Differences\' array: ' + data);
} }
} }
} }

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.114'; PDFJS.version = '1.1.116';
PDFJS.build = '3fd44fd'; PDFJS.build = '6d2d854';
(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

11
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.114'; PDFJS.version = '1.1.116';
PDFJS.build = '3fd44fd'; PDFJS.build = '6d2d854';
(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
@ -11809,8 +11809,13 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
var data = diffEncoding[j]; var data = diffEncoding[j];
if (isNum(data)) { if (isNum(data)) {
index = data; index = data;
} else { } else if (isName(data)) {
differences[index++] = data.name; differences[index++] = data.name;
} else if (isRef(data)) {
diffEncoding[j--] = xref.fetch(data);
continue;
} else {
error('Invalid entry in \'Differences\' array: ' + data);
} }
} }
} }

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.1.114", "version": "1.1.116",
"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