Update client_settings.php
This commit is contained in:
@@ -550,8 +550,8 @@ function load_settings(){
|
|||||||
const urlParams = new URLSearchParams(queryString);
|
const urlParams = new URLSearchParams(queryString);
|
||||||
|
|
||||||
// Get the value of the "show" parameter
|
// Get the value of the "show" parameter
|
||||||
const show_div = getElementById(urlParams.get('show'));
|
const show_div = document.getElementById(urlParams.get('show'));
|
||||||
const nav_tab = getElementById(urlParams.get('show')+"_tab");
|
const nav_tab = document.getElementById(urlParams.get('show')+"_tab");
|
||||||
show_div.style.display="block";
|
show_div.style.display="block";
|
||||||
nav_tab.setAttribute('class', 'nav-link active');
|
nav_tab.setAttribute('class', 'nav-link active');
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user