Browse Source

PDF.js version 1.3.58 - See mozilla/pdf.js@171f59c93563b2f92245ed254e4385ee36038912

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

2
bower.json

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

8
build/pdf.combined.js

@ -20,8 +20,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.3.56'; PDFJS.version = '1.3.58';
PDFJS.build = 'e2aca38'; PDFJS.build = '171f59c';
(function pdfjsWrapper() { (function pdfjsWrapper() {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
@ -24032,7 +24032,7 @@ var IdentityToUnicodeMap = (function IdentityToUnicodeMapClosure() {
}, },
charCodeOf: function (v) { charCodeOf: function (v) {
error('should not call .charCodeOf'); return (isInt(v) && v >= this.firstChar && v <= this.lastChar) ? v : -1;
} }
}; };
@ -26476,7 +26476,7 @@ var Font = (function FontClosure() {
} }
} }
// ... via toUnicode map // ... via toUnicode map
if (!charcode && 'toUnicode' in this) { if (!charcode && this.toUnicode) {
charcode = this.toUnicode.charCodeOf(glyphUnicode); charcode = this.toUnicode.charCodeOf(glyphUnicode);
} }
// setting it to unicode if negative or undefined // setting it to unicode if negative or undefined

4
build/pdf.js

@ -20,8 +20,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.3.56'; PDFJS.version = '1.3.58';
PDFJS.build = 'e2aca38'; PDFJS.build = '171f59c';
(function pdfjsWrapper() { (function pdfjsWrapper() {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it

8
build/pdf.worker.js vendored

@ -20,8 +20,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.3.56'; PDFJS.version = '1.3.58';
PDFJS.build = 'e2aca38'; PDFJS.build = '171f59c';
(function pdfjsWrapper() { (function pdfjsWrapper() {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
@ -16920,7 +16920,7 @@ var IdentityToUnicodeMap = (function IdentityToUnicodeMapClosure() {
}, },
charCodeOf: function (v) { charCodeOf: function (v) {
error('should not call .charCodeOf'); return (isInt(v) && v >= this.firstChar && v <= this.lastChar) ? v : -1;
} }
}; };
@ -19364,7 +19364,7 @@ var Font = (function FontClosure() {
} }
} }
// ... via toUnicode map // ... via toUnicode map
if (!charcode && 'toUnicode' in this) { if (!charcode && this.toUnicode) {
charcode = this.toUnicode.charCodeOf(glyphUnicode); charcode = this.toUnicode.charCodeOf(glyphUnicode);
} }
// setting it to unicode if negative or undefined // setting it to unicode if negative or undefined

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.3.56", "version": "1.3.58",
"description": "Generic build of Mozilla's PDF.js library.", "description": "Generic build of Mozilla's PDF.js library.",
"keywords": [ "keywords": [
"Mozilla", "Mozilla",

Loading…
Cancel
Save