code cosmetics (copypasting from MDN was a bad idea)

This commit is contained in:
tophf 2017-10-14 04:34:25 +03:00
parent 721dfc4787
commit 382e0428c6

View File

@ -306,7 +306,7 @@ function importFromString(jsonString) {
$('#file-all-styles').onclick = () => {
getStylesSafe().then(styles => {
const text = JSON.stringify(styles, null, '\t');
const blob = new Blob([text], {type : 'application/json'});
const blob = new Blob([text], {type: 'application/json'});
const objectURL = URL.createObjectURL(blob);
let link = $element({
tag:'a',