From 51b6f915ffd5bd7d980a240a04eaae6e3940a199 Mon Sep 17 00:00:00 2001 From: Kutaz Date: Tue, 10 Jan 2023 11:09:37 -0500 Subject: [PATCH] code cleaning --- src/web/waiters/OutputWaiter.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/waiters/OutputWaiter.mjs b/src/web/waiters/OutputWaiter.mjs index 4dbc183b..e35b201f 100755 --- a/src/web/waiters/OutputWaiter.mjs +++ b/src/web/waiters/OutputWaiter.mjs @@ -547,11 +547,11 @@ class OutputWaiter { } const fileName = window.prompt("Please enter a filename: ", "download.pdf"); - //Assume if the user clicks cancel they don't want to download + // Assume if the user clicks cancel they don't want to download if (fileName === null) return; const data = await dish.get(Dish.HTML); - //console.log(data, "this is our html") + // console.log(data, "this is our html") const doc = new jsPDF("p", "px", "a4"); const width = doc.internal.pageSize.getWidth();