(js) Fix download of exported folders under iOS

Whenever possible, we no longer rely on the FileSaver.js library to
download zip archives. Instead, we do a simple GET on the resource by
changing the window location.
This commit is contained in:
Francis Lachapelle
2018-05-16 16:46:29 -04:00
parent 0c5b5446dd
commit c966ad60e7
5 changed files with 23 additions and 6 deletions
@@ -554,7 +554,7 @@
filename: this.name + '.ics'
};
return Calendar.$$resource.download(this.id + '.ics', 'export', null, options);
return Calendar.$$resource.open(this.id + '.ics', 'export', null, options);
};
/**