Changes for page Über Beachvolleypedia
Last modified by Beachvolleypedia Administrator on 2025/11/23 13:31
From version 113.1
edited by Beachvolleypedia Administrator
on 2025/11/12 13:22
on 2025/11/12 13:22
Change comment:
There is no comment for this version
To version 113.2
edited by Beachvolleypedia Administrator
on 2025/11/15 16:12
on 2025/11/15 16:12
Change comment:
There is no comment for this version
Summary
-
Objects (1 modified, 0 added, 0 removed)
Details
- XWiki.JavaScriptExtension[0]
-
- Code
-
... ... @@ -19,3 +19,12 @@ 19 19 }); 20 20 } 21 21 }); 22 + 23 +document.addEventListener('DOMContentLoaded', function() { 24 + const navbarRight = document.querySelector('ul.navbar-right'); 25 + if (navbarRight) { 26 + // Prüfe, ob die URL einen Port enthält (z. B. :1234) 27 + const isNonDefaultPort = window.location.port !== '' && window.location.port !== '80' && window.location.port !== '443'; 28 + navbarRight.style.display = isNonDefaultPort ? 'block' : 'none'; 29 + } 30 +});