Skip to content

Commit 9a721b5

Browse files
authoredMay 6, 2020
Update file-download.js
Fixes ongoing Apple device issue. Solution based on thread here: https://stackoverflow.com/questions/54339607/mobile-safari-download-issue-the-operation-couldn-t-be-completed-webkitblobr
1 parent 1e7eb4d commit 9a721b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎file-download.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ module.exports = function(data, filename, mime, bom) {
3030
setTimeout(function() {
3131
document.body.removeChild(tempLink);
3232
window.URL.revokeObjectURL(blobURL);
33-
}, 0)
33+
}, 200)
3434
}
3535
}

0 commit comments

Comments
 (0)
Please sign in to comment.