Fix of pdf not loading on android (issue 5427)
Fix for pdf on android not visible Fix for pdf on android not visible
This commit is contained in:
parent
39a29cfe03
commit
46238c30cf
@ -116,7 +116,10 @@ var NetworkManager = (function NetworkManagerClosure() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (args.onProgressiveData) {
|
if (args.onProgressiveData) {
|
||||||
xhr.responseType = 'moz-chunked-arraybuffer';
|
// Some legacy browsers might throw an exception.
|
||||||
|
try {
|
||||||
|
xhr.responseType = 'moz-chunked-arraybuffer';
|
||||||
|
} catch(e) {}
|
||||||
if (xhr.responseType === 'moz-chunked-arraybuffer') {
|
if (xhr.responseType === 'moz-chunked-arraybuffer') {
|
||||||
pendingRequest.onProgressiveData = args.onProgressiveData;
|
pendingRequest.onProgressiveData = args.onProgressiveData;
|
||||||
pendingRequest.mozChunked = true;
|
pendingRequest.mozChunked = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user