User data are included in data archive

This commit is contained in:
Pierre
2018-05-14 16:53:11 +02:00
parent e06a658422
commit 4ec6213877
4 changed files with 14 additions and 8 deletions

View File

@ -80,6 +80,9 @@ JSZipUtils.getBinaryContent = function(path, callback) {
xhr.overrideMimeType("text/plain; charset=x-user-defined");
}
//Allow big files download
xhr.setRequestHeader("Range", "bytes=0-9999999999999999999999999999999");
xhr.onreadystatechange = function(evt) {
var file, err;
// use `xhr` and not `this`... thanks IE