Browse Source

PDF.js version 1.1.480

master v1.1.480
Pdf Bot 9 years ago
parent
commit
2bbd0dcd72
  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.1.478",
"version": "1.1.480",
"main": [
"build/pdf.js",
"build/pdf.worker.js"

8
build/pdf.combined.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { @@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.1.478';
PDFJS.build = 'a6270bb';
PDFJS.version = '1.1.480';
PDFJS.build = '973b15c';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -4809,8 +4809,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { @@ -4809,8 +4809,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
var pattern;
if (IR[0] === 'TilingPattern') {
var color = IR[1];
var baseTransform = this.baseTransform ||
this.ctx.mozCurrentTransform.slice();
pattern = new TilingPattern(IR, color, this.ctx, this.objs,
this.commonObjs, this.baseTransform);
this.commonObjs, baseTransform);
} else {
pattern = getShadingPatternFromIR(IR);
}

8
build/pdf.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { @@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.1.478';
PDFJS.build = 'a6270bb';
PDFJS.version = '1.1.480';
PDFJS.build = '973b15c';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -4853,8 +4853,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { @@ -4853,8 +4853,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
var pattern;
if (IR[0] === 'TilingPattern') {
var color = IR[1];
var baseTransform = this.baseTransform ||
this.ctx.mozCurrentTransform.slice();
pattern = new TilingPattern(IR, color, this.ctx, this.objs,
this.commonObjs, this.baseTransform);
this.commonObjs, baseTransform);
} else {
pattern = getShadingPatternFromIR(IR);
}

4
build/pdf.worker.js vendored

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { @@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.1.478';
PDFJS.build = 'a6270bb';
PDFJS.version = '1.1.480';
PDFJS.build = '973b15c';
(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.1.478",
"version": "1.1.480",
"description": "Generic build of Mozilla's PDF.js library.",
"keywords": [
"Mozilla",

Loading…
Cancel
Save