replaced the non-breaking space at with space

This is causing IE to unable to recognize the { on line 49
This commit is contained in:
Ben Ni
2018-10-16 15:06:07 -04:00
committed by Jimmy Wärting
parent bbecae4d41
commit cf70d125b0
+1 -1
View File
@@ -46,7 +46,7 @@ function download (url, name, opts) {
xhr.onload = function () {
saveAs(xhr.response, name, opts)
}
xhr.onerror = function () {
xhr.onerror = function () {
console.error('could not download file')
}
xhr.send()