Browse Source

PDF.js version 1.4.39 - See mozilla/pdf.js@974433a7a791e081a937b206cbe9763ac4e68d9b

master v1.4.39
Pdf Bot 9 years ago
parent
commit
0ff23227d4
  1. 2
      bower.json
  2. 6
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 6
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

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

6
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.37'; var pdfjsVersion = '1.4.39';
var pdfjsBuild = 'a4b9024'; var pdfjsBuild = '974433a';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -45206,7 +45206,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
var transferFn = PDFFunction.parse(this.xref, transferObj); var transferFn = PDFFunction.parse(this.xref, transferObj);
var transferMap = new Uint8Array(256); var transferMap = new Uint8Array(256);
var tmp = new Float32Array(1); var tmp = new Float32Array(1);
for (var i = 0; i < 255; i++) { for (var i = 0; i < 256; i++) {
tmp[0] = i / 255; tmp[0] = i / 255;
transferFn(tmp, 0, tmp, 0); transferFn(tmp, 0, tmp, 0);
transferMap[i] = (tmp[0] * 255) | 0; transferMap[i] = (tmp[0] * 255) | 0;

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.37'; var pdfjsVersion = '1.4.39';
var pdfjsBuild = 'a4b9024'; var pdfjsBuild = '974433a';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?

6
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.37'; var pdfjsVersion = '1.4.39';
var pdfjsBuild = 'a4b9024'; var pdfjsBuild = '974433a';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -37365,7 +37365,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
var transferFn = PDFFunction.parse(this.xref, transferObj); var transferFn = PDFFunction.parse(this.xref, transferObj);
var transferMap = new Uint8Array(256); var transferMap = new Uint8Array(256);
var tmp = new Float32Array(1); var tmp = new Float32Array(1);
for (var i = 0; i < 255; i++) { for (var i = 0; i < 256; i++) {
tmp[0] = i / 255; tmp[0] = i / 255;
transferFn(tmp, 0, tmp, 0); transferFn(tmp, 0, tmp, 0);
transferMap[i] = (tmp[0] * 255) | 0; transferMap[i] = (tmp[0] * 255) | 0;

2
package.json

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