From 04fc838ef37537cc77b00282986f7b5b505e1813 Mon Sep 17 00:00:00 2001 From: yflory Date: Tue, 22 Jun 2021 12:08:10 +0200 Subject: [PATCH] lint compliance --- www/pad/export.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/pad/export.js b/www/pad/export.js index db9f5ac37..01ac27d7e 100644 --- a/www/pad/export.js +++ b/www/pad/export.js @@ -93,10 +93,10 @@ define([ var md = Turndown({ headingStyle: 'atx' }).turndown(toExport); - var blob = new Blob([md], { + var mdBlob = new Blob([md], { type: 'text/markdown;charset=utf-8' }); - return void cb(blob); + return void cb(mdBlob); } var html = module.getHTML(toExport); cb(new Blob([ html ], { type: "text/html;charset=utf-8" }));