Browse Source

PDF.js version 1.0.878

master v1.0.878
Pdf Bot 10 years ago
parent
commit
de994a72a6
  1. 2
      bower.json
  2. 7
      build/pdf.combined.js
  3. 5
      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.0.876",
"version": "1.0.878",
"main": [
"build/pdf.js",
"build/pdf.worker.js"

7
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.876';
PDFJS.build = '2b8ff7b';
PDFJS.version = '1.0.878';
PDFJS.build = 'dc30dba';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -2609,6 +2609,7 @@ var WorkerTransport = (function WorkerTransportClosure() { @@ -2609,6 +2609,7 @@ var WorkerTransport = (function WorkerTransportClosure() {
fetchDocument: function WorkerTransport_fetchDocument(source) {
source.disableAutoFetch = PDFJS.disableAutoFetch;
source.disableStream = PDFJS.disableStream;
source.chunkedViewerLoading = !!this.pdfDataRangeTransport;
this.messageHandler.send('GetDocRequest', {
source: source,
@ -39570,7 +39571,7 @@ var WorkerMessageHandler = PDFJS.WorkerMessageHandler = { @@ -39570,7 +39571,7 @@ var WorkerMessageHandler = PDFJS.WorkerMessageHandler = {
}
},
onProgressiveData: PDFJS.disableStream ? null :
onProgressiveData: source.disableStream ? null :
function onProgressiveData(chunk) {
if (!pdfManager) {
cachedChunks.push(chunk);

5
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.876';
PDFJS.build = '2b8ff7b';
PDFJS.version = '1.0.878';
PDFJS.build = 'dc30dba';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -2653,6 +2653,7 @@ var WorkerTransport = (function WorkerTransportClosure() { @@ -2653,6 +2653,7 @@ var WorkerTransport = (function WorkerTransportClosure() {
fetchDocument: function WorkerTransport_fetchDocument(source) {
source.disableAutoFetch = PDFJS.disableAutoFetch;
source.disableStream = PDFJS.disableStream;
source.chunkedViewerLoading = !!this.pdfDataRangeTransport;
this.messageHandler.send('GetDocRequest', {
source: source,

6
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.876';
PDFJS.build = '2b8ff7b';
PDFJS.version = '1.0.878';
PDFJS.build = 'dc30dba';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -33462,7 +33462,7 @@ var WorkerMessageHandler = PDFJS.WorkerMessageHandler = { @@ -33462,7 +33462,7 @@ var WorkerMessageHandler = PDFJS.WorkerMessageHandler = {
}
},
onProgressiveData: PDFJS.disableStream ? null :
onProgressiveData: source.disableStream ? null :
function onProgressiveData(chunk) {
if (!pdfManager) {
cachedChunks.push(chunk);

2
package.json

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

Loading…
Cancel
Save