diff options
Diffstat (limited to 'api-docs/cppdocs/header.html')
| -rw-r--r-- | api-docs/cppdocs/header.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/api-docs/cppdocs/header.html b/api-docs/cppdocs/header.html index a73a36bb..aa33c348 100644 --- a/api-docs/cppdocs/header.html +++ b/api-docs/cppdocs/header.html @@ -26,6 +26,28 @@ $mathjax <link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" /> $extrastylesheet <script type="text/javascript" src="$relpath^binaryninja-darkmode.js"></script> +<script type="text/javascript"> +$(document).ready(function() { + setTimeout(function() { + var selected = document.querySelector('#nav-tree .selected'); + if (selected) { + var parentLi = selected.closest('li'); + if (parentLi) { + var arrow = parentLi.querySelector('.arrow'); + var arrowhead = arrow ? arrow.querySelector('.arrowhead.closed') : null; + if (arrowhead) { + arrow.click(); + setTimeout(function() { + if (document.activeElement) { + document.activeElement.blur(); + } + }, 0); + } + } + } + }, 150); +}); +</script> </head> <body> <!--BEGIN FULL_SIDEBAR--> |
