You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys, I am using FileSaver.js for downloading projects in my app Photopea. Many users report, that it does not work in Safari photopea/photopea#19 . I am using it in the following manner:
var blob = new Blob([buff]); // buff is ArrayBuffer with binary data
saveAs(blob, path); // path is String
Am I doing anything wrong?
The text was updated successfully, but these errors were encountered:
Seems to look fine to me, safari has support for both typed array and blob constructor, but one thing that Safari isn't good at are saving a blob. Safari don't support a[download] yet
Hi guys, I am using FileSaver.js for downloading projects in my app Photopea. Many users report, that it does not work in Safari photopea/photopea#19 . I am using it in the following manner:
Am I doing anything wrong?
The text was updated successfully, but these errors were encountered: