Browse Source

PDF.js version 1.4.135 - See mozilla/pdf.js@c6d2b7f9d9c8fdf75b0b73b5c6bb1b7b7ebcf91d

master v1.4.135
Pdf Bot 9 years ago
parent
commit
039932cb1a
  1. 2
      bower.json
  2. 7
      build/pdf.combined.js
  3. 7
      build/pdf.js
  4. 4
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

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

7
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.133'; var pdfjsVersion = '1.4.135';
var pdfjsBuild = '4784863'; var pdfjsBuild = 'c6d2b7f';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -29159,7 +29159,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
if (this.transparentCanvas) { if (this.transparentCanvas) {
this.ctx = this.compositeCtx; this.ctx = this.compositeCtx;
this.ctx.save();
this.ctx.setTransform(1, 0, 0, 1, 0, 0); // Avoid apply transform twice
this.ctx.drawImage(this.transparentCanvas, 0, 0); this.ctx.drawImage(this.transparentCanvas, 0, 0);
this.ctx.restore();
this.transparentCanvas = null; this.transparentCanvas = null;
} }

7
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.133'; var pdfjsVersion = '1.4.135';
var pdfjsBuild = '4784863'; var pdfjsBuild = 'c6d2b7f';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -7062,7 +7062,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
if (this.transparentCanvas) { if (this.transparentCanvas) {
this.ctx = this.compositeCtx; this.ctx = this.compositeCtx;
this.ctx.save();
this.ctx.setTransform(1, 0, 0, 1, 0, 0); // Avoid apply transform twice
this.ctx.drawImage(this.transparentCanvas, 0, 0); this.ctx.drawImage(this.transparentCanvas, 0, 0);
this.ctx.restore();
this.transparentCanvas = null; this.transparentCanvas = null;
} }

4
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.133'; var pdfjsVersion = '1.4.135';
var pdfjsBuild = '4784863'; var pdfjsBuild = 'c6d2b7f';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?

2
package.json

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