Browse Source

PDF.js version 1.3.131 - See mozilla/pdf.js@edf8ccc1d8b2202aef5832a85a7352ee07c69ad9

master v1.3.131
Pdf Bot 9 years ago
parent
commit
6138046a6d
  1. 2
      bower.json
  2. 8
      build/pdf.combined.js
  3. 8
      build/pdf.js
  4. 4
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

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

8
build/pdf.combined.js

@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') { @@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
typeof global !== 'undefined' ? global : this).PDFJS = {};
}
PDFJS.version = '1.3.129';
PDFJS.build = 'f17d672';
PDFJS.version = '1.3.131';
PDFJS.build = 'edf8ccc';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -5833,6 +5833,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { @@ -5833,6 +5833,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
beginAnnotations: function CanvasGraphics_beginAnnotations() {
this.save();
this.current = new CanvasExtraState();
if (this.baseTransform) {
this.ctx.setTransform.apply(this.ctx, this.baseTransform);
}
},
endAnnotations: function CanvasGraphics_endAnnotations() {

8
build/pdf.js

@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') { @@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
typeof global !== 'undefined' ? global : this).PDFJS = {};
}
PDFJS.version = '1.3.129';
PDFJS.build = 'f17d672';
PDFJS.version = '1.3.131';
PDFJS.build = 'edf8ccc';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -5834,6 +5834,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { @@ -5834,6 +5834,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
beginAnnotations: function CanvasGraphics_beginAnnotations() {
this.save();
this.current = new CanvasExtraState();
if (this.baseTransform) {
this.ctx.setTransform.apply(this.ctx, this.baseTransform);
}
},
endAnnotations: function CanvasGraphics_endAnnotations() {

4
build/pdf.worker.js vendored

@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') { @@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
typeof global !== 'undefined' ? global : this).PDFJS = {};
}
PDFJS.version = '1.3.129';
PDFJS.build = 'f17d672';
PDFJS.version = '1.3.131';
PDFJS.build = 'edf8ccc';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it

2
package.json

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

Loading…
Cancel
Save