From 4976dc4185088352f24f5f5a4b80b5f1f59926ff Mon Sep 17 00:00:00 2001 From: markhillard Date: Sat, 21 Jan 2017 14:43:49 -0500 Subject: [PATCH] Use rawgit.com for CSS reset link (file saver) --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index e5dcbcf..af08fb1 100644 --- a/js/main.js +++ b/js/main.js @@ -526,7 +526,7 @@ E(document).ready(function () { // save as html file E('.save').on('click', function () { - var text = '\n\n\n\n\n\n\n' + editorHTML.getValue() + '\n\n\n\n'; + var text = '\n\n\n\n\n\n\n' + editorHTML.getValue() + '\n\n\n\n'; var blob = new Blob([text], { type: 'text/html; charset=utf-8' });