Skip to content

Commit

Permalink
Remove obsolete URI check (#3290)
Browse files Browse the repository at this point in the history
verified showsearch is still functional

Co-authored-by: MicJ <[email protected]>
  • Loading branch information
Mrt134 and micjohnson777 authored Nov 26, 2024
1 parent 90ff433 commit 3304318
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions layouts/partials/menu-filetree.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,26 +140,6 @@
});
</script>

<!-- Add URI Checker for DocsBot Visibility -->
<script>
// Function to get the value of a query parameter by name
function getSearchQueryParam(param) {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get(param);
}

// Event listener after DocsBot Init
window.DocsBotAI.then(function() {
const paramValue = getSearchQueryParam('showsearch');
if (paramValue) {
const aibutton = document.getElementById("chatbot-button-icon");
// Trigger a click event on the button
aibutton.click();
}
});
</script>
<!-- End URI Checker for DocsBot Visibility -->

<!-- Navigation Menu -->
{{ template "tree-nav" dict "sect" .Site.Home.Sections "current" $current "main_index_class" .Page.Params.main_index_class "path" .RelPermalink }}

Expand Down

0 comments on commit 3304318

Please sign in to comment.