Browse Source

PDF.js version 1.5.224 - See mozilla/pdf.js@7aff695969e3b1ed96b8a59927b438c00f0e04c6

master v1.5.224
Pdf Bot 9 years ago
parent
commit
457c02d1bb
  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 @@ @@ -1,6 +1,6 @@
{
"name": "pdfjs-dist",
"version": "1.5.222",
"version": "1.5.224",
"main": [
"build/pdf.js",
"build/pdf.worker.js"

6
build/pdf.combined.js

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {})); @@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {}));
// Use strict in our context only - users might not want it
'use strict';
var pdfjsVersion = '1.5.222';
var pdfjsBuild = 'd20002b';
var pdfjsVersion = '1.5.224';
var pdfjsBuild = '7aff695';
var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ?
@ -5761,7 +5761,7 @@ var CFFCompiler = (function CFFCompilerClosure() { @@ -5761,7 +5761,7 @@ var CFFCompiler = (function CFFCompilerClosure() {
if (value >= -107 && value <= 107) {
code = [value + 139];
} else if (value >= 108 && value <= 1131) {
value = [value - 108];
value = value - 108;
code = [(value >> 8) + 247, value & 0xFF];
} else if (value >= -1131 && value <= -108) {
value = -value - 108;

4
build/pdf.js

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdf = {})); @@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdf = {}));
// Use strict in our context only - users might not want it
'use strict';
var pdfjsVersion = '1.5.222';
var pdfjsBuild = 'd20002b';
var pdfjsVersion = '1.5.224';
var pdfjsBuild = '7aff695';
var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ?

6
build/pdf.worker.js vendored

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfWorker = {})); @@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfWorker = {}));
// Use strict in our context only - users might not want it
'use strict';
var pdfjsVersion = '1.5.222';
var pdfjsBuild = 'd20002b';
var pdfjsVersion = '1.5.224';
var pdfjsBuild = '7aff695';
var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ?
@ -5761,7 +5761,7 @@ var CFFCompiler = (function CFFCompilerClosure() { @@ -5761,7 +5761,7 @@ var CFFCompiler = (function CFFCompilerClosure() {
if (value >= -107 && value <= 107) {
code = [value + 139];
} else if (value >= 108 && value <= 1131) {
value = [value - 108];
value = value - 108;
code = [(value >> 8) + 247, value & 0xFF];
} else if (value >= -1131 && value <= -108) {
value = -value - 108;

2
package.json

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

Loading…
Cancel
Save