mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
bd6b8f7e31
* move github-pages docs to the main repo * rm github actions for copying docs to VictoriaMetrics/VictoriaMetrics.github.io
17 lines
560 B
JavaScript
17 lines
560 B
JavaScript
/* When in mobile layout, the anchor navigation for submenus
|
|
* doesn't work due to fixed body height when menu is toggled.
|
|
* This script intercepts clicks on links, toggles the menu off
|
|
* and performs the anchor navigation. */
|
|
$(document).on("click", '.shift li.toc a', function(e) {
|
|
let segments = this.href.split('#');
|
|
if (segments.length < 2) {
|
|
/* ignore links without anchor */
|
|
return true;
|
|
}
|
|
|
|
e.preventDefault();
|
|
$("#toggle").click();
|
|
setTimeout(function () {
|
|
location.hash = segments.pop();
|
|
},1)
|
|
});
|