From 8e238ec465eb1950046076477a32375631e2e0e9 Mon Sep 17 00:00:00 2001
From: ulrich
Date: Wed, 20 Jan 2021 19:19:29 +0000
Subject: [PATCH] Upload angepasst

---
 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