pfafman / meteor-filesaver

A smart package that provides filesaver.js to the Meteor clien
3 stars 4 forks source link

Issue with downloading file in safari #7

Open prafulc opened 8 years ago

prafulc commented 8 years ago

I am using this package to save an excel file. It is working well with mozilla and chrome but it is not downloading file in safari as Blob is not supported in safari after v6. Here is my code:

saveAs(new Blob([s2ab(response)],{type:"application/octet-stream"}), fileName)