From f334391613e01057d572e0228aa4f3c2f24346dc Mon Sep 17 00:00:00 2001 From: Nate Buttke Date: Mon, 14 Aug 2023 20:33:31 -0700 Subject: base64ify path links --- frontend/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend') diff --git a/frontend/index.html b/frontend/index.html index 22c142c..7a71b97 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -68,7 +68,7 @@ if (res['loctype'] == "folder"){ text+="
" res['text'].forEach((a)=>{ - text += "
"+a[0]+"
" + text += "
"+a[0][0]+"
" }) text+="
" @@ -76,7 +76,7 @@ else if(res['loctype'] == "file"){ leftClass = "none" res['text'].forEach((a, i)=>{ - text += '
'+a[0]+'
' + text += '
'+a[0][0]+'
' text += '

'+a[1]+'

' }) } -- cgit v1.2.3