From 41ab37e425058eab58e640c94b79b3a9e26fb169 Mon Sep 17 00:00:00 2001 From: ulrich Date: Sat, 09 Jan 2021 19:15:13 +0000 Subject: [PATCH] Erste Anpassungen am Rendering bei ui2 --- web/ui/ui.js | 24 ++++-------------------- 1 files changed, 4 insertions(+), 20 deletions(-) diff --git a/web/ui/ui.js b/web/ui/ui.js index 5ace99b..41a006e 100644 --- a/web/ui/ui.js +++ b/web/ui/ui.js @@ -82,33 +82,17 @@ $('#logout').click(fm_logout); $('#fusszeile-schliessen').on('click', fm_fusszeile_schliessen); fm_get_login(); - - //console.log(window.location); - //console.log(window.location.search); var parsedUrl = new URL(window.location.href); - //console.log(parsedUrl.searchParams.get("pfad")); var wunschPfad = parsedUrl.searchParams.get("pfad"); - if(wunschPfad !== null) { - if(wunschPfad.length > 0) { - pfad = wunschPfad; - fm_get_list(wunschPfad); - fm_init_uploader(); - } else { - fm_get_list(''); - fm_init_uploader(); - } + if(wunschPfad !== null && wunschPfad.length > 0) { + pfad = wunschPfad; + fm_get_list(wunschPfad); + fm_init_uploader(); } else { fm_get_list(''); fm_init_uploader(); } - /* - console.log('href: ' + window.location.href); - console.log('host: ' + window.location.host); - console.log('hostname: ' + window.location.hostname); - console.log('port: ' + window.location.port); - console.log('protocol: ' + window.location.protocol); - */ loc = window.location.protocol + '//' + window.location.host; } -- Gitblit v1.9.3