Browse Source

PDF.js version 1.4.33 - See mozilla/pdf.js@365bc99508a71a71252d10b38b6c404a34d4bba6

master v1.4.33
Pdf Bot 9 years ago
parent
commit
4372cffe50
  1. 2
      bower.json
  2. 12
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 12
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

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

12
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.31'; var pdfjsVersion = '1.4.33';
var pdfjsBuild = '825a222'; var pdfjsBuild = '365bc99';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -43928,10 +43928,10 @@ var PDFImage = (function PDFImageClosure() {
imgArray = this.getImageBytes(originalHeight * rowBytes); imgArray = this.getImageBytes(originalHeight * rowBytes);
// If imgArray came from a DecodeStream, we're safe to transfer it // If imgArray came from a DecodeStream, we're safe to transfer it
// (and thus neuter it) because it will constitute the entire // (and thus detach its underlying buffer) because it will constitute
// DecodeStream's data. But if it came from a Stream, we need to // the entire DecodeStream's data. But if it came from a Stream, we
// copy it because it'll only be a portion of the Stream's data, and // need to copy it because it'll only be a portion of the Stream's
// the rest will be read later on. // data, and the rest will be read later on.
if (this.image instanceof DecodeStream) { if (this.image instanceof DecodeStream) {
imgData.data = imgArray; imgData.data = imgArray;
} else { } else {

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.31'; var pdfjsVersion = '1.4.33';
var pdfjsBuild = '825a222'; var pdfjsBuild = '365bc99';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?

12
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.31'; var pdfjsVersion = '1.4.33';
var pdfjsBuild = '825a222'; var pdfjsBuild = '365bc99';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -36087,10 +36087,10 @@ var PDFImage = (function PDFImageClosure() {
imgArray = this.getImageBytes(originalHeight * rowBytes); imgArray = this.getImageBytes(originalHeight * rowBytes);
// If imgArray came from a DecodeStream, we're safe to transfer it // If imgArray came from a DecodeStream, we're safe to transfer it
// (and thus neuter it) because it will constitute the entire // (and thus detach its underlying buffer) because it will constitute
// DecodeStream's data. But if it came from a Stream, we need to // the entire DecodeStream's data. But if it came from a Stream, we
// copy it because it'll only be a portion of the Stream's data, and // need to copy it because it'll only be a portion of the Stream's
// the rest will be read later on. // data, and the rest will be read later on.
if (this.image instanceof DecodeStream) { if (this.image instanceof DecodeStream) {
imgData.data = imgArray; imgData.data = imgArray;
} else { } else {

2
package.json

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