Browse Source

PDF.js version 1.0.594

master v1.0.594
Yury Delendik 10 years ago
parent
commit
cec22181a6
  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 @@ @@ -1,6 +1,6 @@
{
"name": "pdfjs-dist",
"version": "1.0.592",
"version": "1.0.594",
"keywords": [
"Mozilla",
"pdf",

8
build/pdf.combined.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { @@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.0.592';
PDFJS.build = '46a9a35';
PDFJS.version = '1.0.594';
PDFJS.build = '223f34b';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -17801,10 +17801,10 @@ var BinaryCMapReader = (function BinaryCMapReaderClosure() { @@ -17801,10 +17801,10 @@ var BinaryCMapReader = (function BinaryCMapReaderClosure() {
function hexToStr(a, size) {
// This code is hot. Special-case some common values to avoid creating an
// object with subarray().
if (size == 1) {
if (size === 1) {
return String.fromCharCode(a[0], a[1]);
}
if (size == 3) {
if (size === 3) {
return String.fromCharCode(a[0], a[1], a[2], a[3]);
}
return String.fromCharCode.apply(null, a.subarray(0, size + 1));

4
build/pdf.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { @@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.0.592';
PDFJS.build = '46a9a35';
PDFJS.version = '1.0.594';
PDFJS.build = '223f34b';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it

8
build/pdf.worker.js vendored

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { @@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.0.592';
PDFJS.build = '46a9a35';
PDFJS.version = '1.0.594';
PDFJS.build = '223f34b';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -12944,10 +12944,10 @@ var BinaryCMapReader = (function BinaryCMapReaderClosure() { @@ -12944,10 +12944,10 @@ var BinaryCMapReader = (function BinaryCMapReaderClosure() {
function hexToStr(a, size) {
// This code is hot. Special-case some common values to avoid creating an
// object with subarray().
if (size == 1) {
if (size === 1) {
return String.fromCharCode(a[0], a[1]);
}
if (size == 3) {
if (size === 3) {
return String.fromCharCode(a[0], a[1], a[2], a[3]);
}
return String.fromCharCode.apply(null, a.subarray(0, size + 1));

2
package.json

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

Loading…
Cancel
Save