Browse Source

PDF.js version 1.4.115 - See mozilla/pdf.js@8402c791711a1dd0a66021cc02e97e455194d8b1

master v1.4.115
Pdf Bot 9 years ago
parent
commit
3f75f5e8e7
  1. 2
      bower.json
  2. 6
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 6
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

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

6
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.113'; var pdfjsVersion = '1.4.115';
var pdfjsBuild = 'a6acf74'; var pdfjsBuild = '8402c79';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -36028,7 +36028,7 @@ var Font = (function FontClosure() {
assert(cid <= 0xffff, 'Max size of CID is 65,535'); assert(cid <= 0xffff, 'Max size of CID is 65,535');
var glyphId = -1; var glyphId = -1;
if (isCidToGidMapEmpty) { if (isCidToGidMapEmpty) {
glyphId = charCode; glyphId = cid;
} else if (cidToGidMap[cid] !== undefined) { } else if (cidToGidMap[cid] !== undefined) {
glyphId = cidToGidMap[cid]; glyphId = cidToGidMap[cid];
} }

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.113'; var pdfjsVersion = '1.4.115';
var pdfjsBuild = 'a6acf74'; var pdfjsBuild = '8402c79';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?

6
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.113'; var pdfjsVersion = '1.4.115';
var pdfjsBuild = 'a6acf74'; var pdfjsBuild = '8402c79';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -28048,7 +28048,7 @@ var Font = (function FontClosure() {
assert(cid <= 0xffff, 'Max size of CID is 65,535'); assert(cid <= 0xffff, 'Max size of CID is 65,535');
var glyphId = -1; var glyphId = -1;
if (isCidToGidMapEmpty) { if (isCidToGidMapEmpty) {
glyphId = charCode; glyphId = cid;
} else if (cidToGidMap[cid] !== undefined) { } else if (cidToGidMap[cid] !== undefined) {
glyphId = cidToGidMap[cid]; glyphId = cidToGidMap[cid];
} }

2
package.json

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