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