From 382e0428c648bedf58d6609c6a7c69b1c73bf38d Mon Sep 17 00:00:00 2001 From: tophf Date: Sat, 14 Oct 2017 04:34:25 +0300 Subject: [PATCH] code cosmetics (copypasting from MDN was a bad idea) --- manage/fileSaveLoad.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage/fileSaveLoad.js b/manage/fileSaveLoad.js index bd6823b0..e891400d 100644 --- a/manage/fileSaveLoad.js +++ b/manage/fileSaveLoad.js @@ -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',