Browse Source

PDF.js version 1.5.289 - See mozilla/pdf.js@70b3eea4a3280aa860569438aebf6efb9a976542

Pdf Bot 9 years ago
parent
commit
44860bdf70
5 changed files with 2378 additions and 1898 deletions
  1. 1 1
      bower.json
  2. 831 134
      build/pdf.combined.js
  3. 8 2
      build/pdf.js
  4. 1537 1760
      build/pdf.worker.js
  5. 1 1
      package.json

+ 1 - 1
bower.json

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

File diff suppressed because it is too large
+ 831 - 134
build/pdf.combined.js


+ 8 - 2
build/pdf.js

@@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdf = {}));
   // Use strict in our context only - users might not want it
   'use strict';
 
-var pdfjsVersion = '1.5.287';
-var pdfjsBuild = 'c4db4dd';
+var pdfjsVersion = '1.5.289';
+var pdfjsBuild = '70b3eea';
 
   var pdfjsFilePath =
     typeof document !== 'undefined' && document.currentScript ?
@@ -1111,6 +1111,11 @@ function isArrayBuffer(v) {
   return typeof v === 'object' && v !== null && v.byteLength !== undefined;
 }
 
+// Checks if ch is one of the following characters: SPACE, TAB, CR or LF.
+function isSpace(ch) {
+  return (ch === 0x20 || ch === 0x09 || ch === 0x0D || ch === 0x0A);
+}
+
 /**
  * Promise Capability object.
  *
@@ -2358,6 +2363,7 @@ exports.isEmptyObj = isEmptyObj;
 exports.isInt = isInt;
 exports.isNum = isNum;
 exports.isString = isString;
+exports.isSpace = isSpace;
 exports.isSameOrigin = isSameOrigin;
 exports.isValidUrl = isValidUrl;
 exports.isLittleEndian = isLittleEndian;

File diff suppressed because it is too large
+ 1537 - 1760
build/pdf.worker.js


+ 1 - 1
package.json

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

Some files were not shown because too many files changed in this diff