[bug] fix export blob type

This commit is contained in:
Kuldeep M 2019-07-31 21:45:10 +01:00
parent d47b354039
commit 1a722901cc

View File

@ -38,7 +38,7 @@ var data = (function() {
var str = JSON.stringify(load());
var data = encode(str);
var blob = new Blob([data], {
type: 'application/octet-stream'
type: "application/json"
});
var url = URL.createObjectURL(blob);
var link = document.createElement("a");