Skip to content

Commit

Permalink
Merge pull request #2528 from PaulL1/2527_exporter_spare_chars
Browse files Browse the repository at this point in the history
Fix #2527 (exporter): remove spare characters in csv export
  • Loading branch information
PaulL1 committed Jan 9, 2015
2 parents d023360 + aad0bd6 commit 97dbff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/exporter/js/exporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@

//html5 A[download]
if ('download' in a) {
var blob = new Blob(["\ufeff", csvContent], {
var blob = new Blob([csvContent], {
type: strMimeType
});
rawFile = URL.createObjectURL(blob);
Expand Down

0 comments on commit 97dbff8

Please sign in to comment.