|
|
|
@ -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() { |
|
|
|
|