From 964f6c689c9a4765c844eaeaf84982fe5e7e45fe Mon Sep 17 00:00:00 2001 From: SimonGschnell Date: Mon, 30 Sep 2024 11:44:31 +0200 Subject: [PATCH] removes debugging prints --- public/js/components/Cis/Menu/Entry.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/public/js/components/Cis/Menu/Entry.js b/public/js/components/Cis/Menu/Entry.js index 3d01a7cfc..4e659329b 100755 --- a/public/js/components/Cis/Menu/Entry.js +++ b/public/js/components/Cis/Menu/Entry.js @@ -32,22 +32,17 @@ export default { } }, 'entry.menu_open': function (newValue,oldValue) { - if (this.entry.titel == "Mein Studium") - { - console.log("here",this.entry.titel,newValue,"newValue"); - } if (newValue) { - console.log(this.entry.titel,"open") // only invokes .show if this.collapse is not null this.collapse && this.collapse.show(); } else { - console.log(this.entry.titel,"close") // only invokes .hide if this.collapse is not null this.collapse && this.collapse.hide(); } + // debugging helpers - console.log(this.entry.titel,newValue?"open":"close") }, },