From 6de41f9947360e3aecc08c5b5f819bf9b16c5289 Mon Sep 17 00:00:00 2001 From: Maxime Cannoodt Date: Mon, 4 Jul 2022 20:22:06 +0200 Subject: [PATCH] log id --- webapp/src/routes/note/[id].svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/src/routes/note/[id].svelte b/webapp/src/routes/note/[id].svelte index dc29b7f..166b0d8 100644 --- a/webapp/src/routes/note/[id].svelte +++ b/webapp/src/routes/note/[id].svelte @@ -57,6 +57,7 @@ const BOM = new Uint8Array([0xef, 0xbb, 0xbf]); const blob = new Blob([BOM, text], { type: 'text/plain' }); const url = window.URL.createObjectURL(blob); + console.log(url); return url; }