Created
January 24, 2013 03:59
-
-
Save imrehg/4617525 to your computer and use it in GitHub Desktop.
Temporary fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var csv = '#Time(Unixtime),Frequency(nm),WavemeterTemperature(C)\n'; savedValues[chn].forEach(function(e) { | |
csv += e[0] + ',' + e[1] + ',' + e[2] + '\n'; | |
}); var blob = new Blob([csv], {type: 'text/csv'}); var link = document.createElement('link'); link.href = window.URL.createObjectURL(blob); document.body.appendChild(link); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment