Browse Source

PDF.js version 1.0.608

master v1.0.608
Yury Delendik 11 years ago
parent
commit
4d92a5025a
  1. 2
      bower.json
  2. 15
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 15
      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.606",
"version": "1.0.608",
"keywords": [
"Mozilla",
"pdf",

15
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.606';
PDFJS.build = 'c6c4583';
PDFJS.version = '1.0.608';
PDFJS.build = 'cbdaf85';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -6795,15 +6795,8 @@ var ChunkedStream = (function ChunkedStreamClosure() { @@ -6795,15 +6795,8 @@ var ChunkedStream = (function ChunkedStreamClosure() {
if (pos >= this.end) {
return -1;
}
var byte = this.bytes[pos];
if (byte === 0) {
// |byte| might be zero, because the corresponding chunk has not been
// loaded yet. In this case, this.ensureByte(pos) will throw an
// exception and nothing is returned.
this.ensureByte(pos);
}
this.pos++;
return byte;
this.ensureByte(pos);
return this.bytes[this.pos++];
},
getUint16: function ChunkedStream_getUint16() {

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.606';
PDFJS.build = 'c6c4583';
PDFJS.version = '1.0.608';
PDFJS.build = 'cbdaf85';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it

15
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.606';
PDFJS.build = 'c6c4583';
PDFJS.version = '1.0.608';
PDFJS.build = 'cbdaf85';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -1938,15 +1938,8 @@ var ChunkedStream = (function ChunkedStreamClosure() { @@ -1938,15 +1938,8 @@ var ChunkedStream = (function ChunkedStreamClosure() {
if (pos >= this.end) {
return -1;
}
var byte = this.bytes[pos];
if (byte === 0) {
// |byte| might be zero, because the corresponding chunk has not been
// loaded yet. In this case, this.ensureByte(pos) will throw an
// exception and nothing is returned.
this.ensureByte(pos);
}
this.pos++;
return byte;
this.ensureByte(pos);
return this.bytes[this.pos++];
},
getUint16: function ChunkedStream_getUint16() {

2
package.json

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

Loading…
Cancel
Save