summaryrefslogtreecommitdiff
path: root/public/js/extra.js
diff options
context:
space:
mode:
authorNV2017-02-03 17:35:16 +0900
committerNV2017-02-03 17:35:49 +0900
commit5a212b933548ccc5ef1cd45d8b86d7d86c8f7b9e (patch)
tree20451ee31ec0cdcfcf18f46ff70e3344a124e728 /public/js/extra.js
parentf27fc90a7482ab51882d9eb320feaf8b14881ea1 (diff)
Removed UTF-8 BOM in download function
Diffstat (limited to '')
-rw-r--r--public/js/extra.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/extra.js b/public/js/extra.js
index b651d9e6..a657c311 100644
--- a/public/js/extra.js
+++ b/public/js/extra.js
@@ -612,7 +612,7 @@ export function exportToRawHTML(view) {
const blob = new Blob([html], {
type: "text/html;charset=utf-8"
});
- saveAs(blob, filename);
+ saveAs(blob, filename, true);
}
//extract markdown body to html and compile to template
@@ -644,7 +644,7 @@ export function exportToHTML(view) {
const blob = new Blob([html], {
type: "text/html;charset=utf-8"
});
- saveAs(blob, filename);
+ saveAs(blob, filename, true);
});
});
}