From 32133a0d05bba793efe0e44bbcecbc0628a742ce Mon Sep 17 00:00:00 2001
From: tracer <tracer@24unix.net>
Date: Tue, 25 Oct 2022 19:38:01 +0200
Subject: [PATCH] some format changes

---
 public/assets/js/functions.js | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/public/assets/js/functions.js b/public/assets/js/functions.js
index be75099..9e28e51 100644
--- a/public/assets/js/functions.js
+++ b/public/assets/js/functions.js
@@ -11,10 +11,8 @@ function addAddress(url) {
 }
 
 function editAddress(id) {
-    console.log("editButon")
     if (document.getElementById('edit_button_' + id).value === 'Save') {
         // save
-        console.log("save")
         const url = "/address/update";
         fetch(url, {
             method: "POST",
@@ -32,8 +30,8 @@ function editAddress(id) {
             .then(
                 response => response.text()
             ).then(
-            html => console.log(html)
-        );
+                html => console.log(html)
+            );
 
         document.getElementById('first_' + id).disabled = true
         document.getElementById('last_' + id).disabled = true
@@ -45,7 +43,6 @@ function editAddress(id) {
         document.getElementById('edit_button_' + id).value = 'Edit'
     } else {
         //switch to edit
-        console.log("switch to edit")
         document.getElementById('first_' + id).disabled = false
         document.getElementById('last_' + id).disabled = false
         document.getElementById('street_' + id).disabled = false
@@ -58,7 +55,6 @@ function editAddress(id) {
 }
 
 function deleteAddress(id) {
-    console.log("del")
     if (confirm('Are you sure?')) {
         const url = "/address/delete";
         fetch(url, {
@@ -70,8 +66,8 @@ function deleteAddress(id) {
             .then(
                 response => response.text()
             ).then(
-            html => console.log(html)
-        );
+                html => console.log(html)
+            );
         let row = document.getElementById('row_' + id)
         row.parentNode.removeChild(row)
     }