Files
ROCm/docs/readthedocs.js
2024-10-16 14:48:11 -04:00

7 lines
287 B
JavaScript

// Trigger the Read the Docs Addons Search modal when clicking on "Search docs" input from the topnav.
document.querySelector("[role='search'] input").addEventListener("focusin", () => {
const event = new CustomEvent("readthedocs-search-show");
document.dispatchEvent(event);
});