Browse Source

PDF.js version 1.4.37 - See mozilla/pdf.js@a4b90243d0c7b825a7a549440c701073d3725d9f

master v1.4.37
Pdf Bot 9 years ago
parent
commit
58ca50d0fb
  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.4.35", "version": "1.4.37",
"main": [ "main": [
"build/pdf.js", "build/pdf.js",
"build/pdf.worker.js" "build/pdf.worker.js"

9
build/pdf.combined.js

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {}));
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
'use strict'; 'use strict';
var pdfjsVersion = '1.4.35'; var pdfjsVersion = '1.4.37';
var pdfjsBuild = '5d797e1'; var pdfjsBuild = 'a4b9024';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -46410,14 +46410,11 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
var diffEncoding = encoding.get('Differences'); var diffEncoding = encoding.get('Differences');
var index = 0; var index = 0;
for (var j = 0, jj = diffEncoding.length; j < jj; j++) { for (var j = 0, jj = diffEncoding.length; j < jj; j++) {
var data = diffEncoding[j]; var data = xref.fetchIfRef(diffEncoding[j]);
if (isNum(data)) { if (isNum(data)) {
index = data; index = data;
} else if (isName(data)) { } else if (isName(data)) {
differences[index++] = data.name; differences[index++] = data.name;
} else if (isRef(data)) {
diffEncoding[j--] = xref.fetch(data);
continue;
} else { } else {
error('Invalid entry in \'Differences\' array: ' + data); error('Invalid entry in \'Differences\' array: ' + data);
} }

4
build/pdf.js

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdf = {}));
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
'use strict'; 'use strict';
var pdfjsVersion = '1.4.35'; var pdfjsVersion = '1.4.37';
var pdfjsBuild = '5d797e1'; var pdfjsBuild = 'a4b9024';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?

9
build/pdf.worker.js vendored

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfWorker = {}));
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
'use strict'; 'use strict';
var pdfjsVersion = '1.4.35'; var pdfjsVersion = '1.4.37';
var pdfjsBuild = '5d797e1'; var pdfjsBuild = 'a4b9024';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -38569,14 +38569,11 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
var diffEncoding = encoding.get('Differences'); var diffEncoding = encoding.get('Differences');
var index = 0; var index = 0;
for (var j = 0, jj = diffEncoding.length; j < jj; j++) { for (var j = 0, jj = diffEncoding.length; j < jj; j++) {
var data = diffEncoding[j]; var data = xref.fetchIfRef(diffEncoding[j]);
if (isNum(data)) { if (isNum(data)) {
index = data; index = data;
} else if (isName(data)) { } else if (isName(data)) {
differences[index++] = data.name; differences[index++] = data.name;
} else if (isRef(data)) {
diffEncoding[j--] = xref.fetch(data);
continue;
} else { } else {
error('Invalid entry in \'Differences\' array: ' + data); error('Invalid entry in \'Differences\' array: ' + data);
} }

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.4.35", "version": "1.4.37",
"main": "build/pdf.js", "main": "build/pdf.js",
"description": "Generic build of Mozilla's PDF.js library.", "description": "Generic build of Mozilla's PDF.js library.",
"keywords": [ "keywords": [

Loading…
Cancel
Save