fix for #236, downloads data directly now

This commit is contained in:
dethe 2013-06-14 15:53:41 -07:00
Родитель e2b79ada25
Коммит 5781fabf9b
1 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -70,9 +70,21 @@ window.addEventListener("DOMContentLoaded", function(){
});
document.querySelector(".download").addEventListener('click', function() {
document.querySelector(".download").addEventListener('click', function(evt) {
console.log('received export data');
window.open('data:application/json,' + exportFormat(allConnections));
var file = new Blob([exportFormat(allConnections)], {type: 'application/json'});
var reader = new FileReader();
var a = document.createElement('a');
reader.onloadend = function(){
a.href = reader.result;
a.download = 'collusionData.json';
a.target = '_blank';
document.body.appendChild(a);
a.click();
};
reader.readAsDataURL(file);
evt.preventDefault();
// window.open('data:application/json,' + exportFormat(allConnections));
});
document.querySelector('.reset-data').addEventListener('click', function(){