|
|
@ -12737,8 +12737,8 @@ var _UnsupportedManager = function UnsupportedManagerClosure() { |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
}(); |
|
|
|
}(); |
|
|
|
exports.version = '1.7.410'; |
|
|
|
exports.version = '1.7.412'; |
|
|
|
exports.build = '31f88756'; |
|
|
|
exports.build = 'b665b031'; |
|
|
|
exports.getDocument = getDocument; |
|
|
|
exports.getDocument = getDocument; |
|
|
|
exports.PDFDataRangeTransport = PDFDataRangeTransport; |
|
|
|
exports.PDFDataRangeTransport = PDFDataRangeTransport; |
|
|
|
exports.PDFWorker = PDFWorker; |
|
|
|
exports.PDFWorker = PDFWorker; |
|
|
@ -27929,8 +27929,8 @@ if (!globalScope.PDFJS) { |
|
|
|
globalScope.PDFJS = {}; |
|
|
|
globalScope.PDFJS = {}; |
|
|
|
} |
|
|
|
} |
|
|
|
var PDFJS = globalScope.PDFJS; |
|
|
|
var PDFJS = globalScope.PDFJS; |
|
|
|
PDFJS.version = '1.7.410'; |
|
|
|
PDFJS.version = '1.7.412'; |
|
|
|
PDFJS.build = '31f88756'; |
|
|
|
PDFJS.build = 'b665b031'; |
|
|
|
PDFJS.pdfBug = false; |
|
|
|
PDFJS.pdfBug = false; |
|
|
|
if (PDFJS.verbosity !== undefined) { |
|
|
|
if (PDFJS.verbosity !== undefined) { |
|
|
|
sharedUtil.setVerbosityLevel(PDFJS.verbosity); |
|
|
|
sharedUtil.setVerbosityLevel(PDFJS.verbosity); |
|
|
@ -43469,8 +43469,8 @@ exports.TilingPattern = TilingPattern; |
|
|
|
"use strict"; |
|
|
|
"use strict"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var pdfjsVersion = '1.7.410'; |
|
|
|
var pdfjsVersion = '1.7.412'; |
|
|
|
var pdfjsBuild = '31f88756'; |
|
|
|
var pdfjsBuild = 'b665b031'; |
|
|
|
var pdfjsSharedUtil = __w_pdfjs_require__(0); |
|
|
|
var pdfjsSharedUtil = __w_pdfjs_require__(0); |
|
|
|
var pdfjsDisplayGlobal = __w_pdfjs_require__(26); |
|
|
|
var pdfjsDisplayGlobal = __w_pdfjs_require__(26); |
|
|
|
var pdfjsDisplayAPI = __w_pdfjs_require__(10); |
|
|
|
var pdfjsDisplayAPI = __w_pdfjs_require__(10); |
|
|
@ -43983,20 +43983,28 @@ if (typeof PDFJS === 'undefined' || !PDFJS.compatibilityChecked) { |
|
|
|
} |
|
|
|
} |
|
|
|
})(); |
|
|
|
})(); |
|
|
|
(function checkRequestAnimationFrame() { |
|
|
|
(function checkRequestAnimationFrame() { |
|
|
|
function fakeRequestAnimationFrame(callback) { |
|
|
|
function installFakeAnimationFrameFunctions() { |
|
|
|
window.setTimeout(callback, 20); |
|
|
|
window.requestAnimationFrame = function (callback) { |
|
|
|
|
|
|
|
return window.setTimeout(callback, 20); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
window.cancelAnimationFrame = function (timeoutID) { |
|
|
|
|
|
|
|
window.clearTimeout(timeoutID); |
|
|
|
|
|
|
|
}; |
|
|
|
} |
|
|
|
} |
|
|
|
if (!hasDOM) { |
|
|
|
if (!hasDOM) { |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if (isIOS) { |
|
|
|
if (isIOS) { |
|
|
|
window.requestAnimationFrame = fakeRequestAnimationFrame; |
|
|
|
installFakeAnimationFrameFunctions(); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if ('requestAnimationFrame' in window) { |
|
|
|
if ('requestAnimationFrame' in window) { |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
window.requestAnimationFrame = window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || fakeRequestAnimationFrame; |
|
|
|
window.requestAnimationFrame = window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame; |
|
|
|
|
|
|
|
if (!('requestAnimationFrame' in window)) { |
|
|
|
|
|
|
|
installFakeAnimationFrameFunctions(); |
|
|
|
|
|
|
|
} |
|
|
|
})(); |
|
|
|
})(); |
|
|
|
(function checkCanvasSizeLimitation() { |
|
|
|
(function checkCanvasSizeLimitation() { |
|
|
|
if (isIOS || isAndroid) { |
|
|
|
if (isIOS || isAndroid) { |
|
|
|