Browse Source

PDF.js version 1.5.332 - See mozilla/pdf.js@bd562bb39c56993ea5e96ac3e0d016a5e015f14d

master v1.5.332
Pdf Bot 9 years ago
parent
commit
00f22cea8b
  1. 2
      bower.json
  2. 9
      build/pdf.combined.js
  3. 9
      build/pdf.js
  4. 9
      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.330",
"version": "1.5.332",
"main": [
"build/pdf.js",
"build/pdf.worker.js"

9
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.330';
var pdfjsBuild = '43613f1';
var pdfjsVersion = '1.5.332';
var pdfjsBuild = 'bd562bb';
var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ?
@ -3542,10 +3542,7 @@ var createBlob = function createBlob(data, contentType) { @@ -3542,10 +3542,7 @@ var createBlob = function createBlob(data, contentType) {
if (typeof Blob !== 'undefined') {
return new Blob([data], { type: contentType });
}
// Blob builder is deprecated in FF14 and removed in FF18.
var bb = new MozBlobBuilder();
bb.append(data);
return bb.getBlob(contentType);
warn('The "Blob" constructor is not supported.');
};
var createObjectURL = (function createObjectURLClosure() {

9
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.330';
var pdfjsBuild = '43613f1';
var pdfjsVersion = '1.5.332';
var pdfjsBuild = 'bd562bb';
var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ?
@ -1521,10 +1521,7 @@ var createBlob = function createBlob(data, contentType) { @@ -1521,10 +1521,7 @@ var createBlob = function createBlob(data, contentType) {
if (typeof Blob !== 'undefined') {
return new Blob([data], { type: contentType });
}
// Blob builder is deprecated in FF14 and removed in FF18.
var bb = new MozBlobBuilder();
bb.append(data);
return bb.getBlob(contentType);
warn('The "Blob" constructor is not supported.');
};
var createObjectURL = (function createObjectURLClosure() {

9
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.330';
var pdfjsBuild = '43613f1';
var pdfjsVersion = '1.5.332';
var pdfjsBuild = 'bd562bb';
var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ?
@ -3542,10 +3542,7 @@ var createBlob = function createBlob(data, contentType) { @@ -3542,10 +3542,7 @@ var createBlob = function createBlob(data, contentType) {
if (typeof Blob !== 'undefined') {
return new Blob([data], { type: contentType });
}
// Blob builder is deprecated in FF14 and removed in FF18.
var bb = new MozBlobBuilder();
bb.append(data);
return bb.getBlob(contentType);
warn('The "Blob" constructor is not supported.');
};
var createObjectURL = (function createObjectURLClosure() {

2
package.json

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

Loading…
Cancel
Save