From f8de65cb202c7460bb236d91802e045d18136e02 Mon Sep 17 00:00:00 2001 From: Krzysztof Rudnicki Date: Mon, 8 Sep 2025 12:08:10 +0200 Subject: [PATCH] chore: removed unecessary text --- articles/index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/articles/index.html b/articles/index.html index e33d799..7660e69 100644 --- a/articles/index.html +++ b/articles/index.html @@ -72,12 +72,11 @@ article h1{margin:.25rem 0 .5rem;font-size:1.6rem} -
+
- Stored locally or on server if available.
@@ -168,7 +167,6 @@ article h1{margin:.25rem 0 .5rem;font-size:1.6rem} tFile.addEventListener('change',e=>{const f=e.target.files[0]; if(f) fileToDataURL(f).then(u=>tPrev.src=u)}); tDrop.addEventListener('click',()=>tFile.click()); - // Content paste (keep), no drag & drop content.addEventListener('paste',e=>{const it=(e.clipboardData||{}).items||[]; for(const x of it){const f=x.getAsFile&&x.getAsFile(); if(!f) continue; e.preventDefault(); if(f.type.startsWith('image/')) { // Insert a placeholder while uploading const ph=imgEl(''); ph.alt='image'; ph.style.minHeight='120px'; ph.style.background='#f0f0f0'; insertAtSel(ph);