Browse Source

PDF.js version 1.3.158 - See mozilla/pdf.js@944d1e6dc5db0a113ee93648072f30a681b9b52b

master v1.3.158
Pdf Bot 9 years ago
parent
commit
a66b9328e8
  1. 2
      bower.json
  2. 10
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 10
      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.156",
"version": "1.3.158",
"main": [
"build/pdf.js",
"build/pdf.worker.js"

10
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.156';
PDFJS.build = '3f19b3f';
PDFJS.version = '1.3.158';
PDFJS.build = '944d1e6';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -43069,10 +43069,8 @@ var Pattern = (function PatternClosure() { @@ -43069,10 +43069,8 @@ var Pattern = (function PatternClosure() {
var Shadings = {};
// A small number to offset the first/last color stops so we can insert ones to
// support extend. Number.MIN_VALUE appears to be too small and breaks the
// extend. 1e-7 works in FF but chrome seems to use an even smaller sized number
// internally so we have to go bigger.
Shadings.SMALL_NUMBER = 1e-2;
// support extend. Number.MIN_VALUE is too small and breaks the extend.
Shadings.SMALL_NUMBER = 1e-6;
// Radial and axial shading have very similar implementations
// If needed, the implementations can be broken into two classes

4
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.156';
PDFJS.build = '3f19b3f';
PDFJS.version = '1.3.158';
PDFJS.build = '944d1e6';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it

10
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.156';
PDFJS.build = '3f19b3f';
PDFJS.version = '1.3.158';
PDFJS.build = '944d1e6';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -35255,10 +35255,8 @@ var Pattern = (function PatternClosure() { @@ -35255,10 +35255,8 @@ var Pattern = (function PatternClosure() {
var Shadings = {};
// A small number to offset the first/last color stops so we can insert ones to
// support extend. Number.MIN_VALUE appears to be too small and breaks the
// extend. 1e-7 works in FF but chrome seems to use an even smaller sized number
// internally so we have to go bigger.
Shadings.SMALL_NUMBER = 1e-2;
// support extend. Number.MIN_VALUE is too small and breaks the extend.
Shadings.SMALL_NUMBER = 1e-6;
// Radial and axial shading have very similar implementations
// If needed, the implementations can be broken into two classes

2
package.json

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

Loading…
Cancel
Save