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
I get the error "'BlobBuilder' is undefined" in both my code and the demo(https://rawgit.com/nwcell/ics.js/master/demo/demo.html#) on IE 10 (tested on demo with emulation in devtools)
Is there any workaround or fix known?
The text was updated successfully, but these errors were encountered:
Hi @nwcell i think i solved it! i changed ics.js and added: if (window.MSBlobBuilder) { var bb = new window.MSBlobBuilder(); bb.append(calendar); blob = bb.getBlob('text/x-vCalendar;charset=' + document.characterSet); }
This way it also works in IE10
I get the error "'BlobBuilder' is undefined" in both my code and the demo(https://rawgit.com/nwcell/ics.js/master/demo/demo.html#) on IE 10 (tested on demo with emulation in devtools)
Is there any workaround or fix known?
The text was updated successfully, but these errors were encountered: