Files
ROCm/docs/sphinx/static/version-history-link.js
peterjunpark f004891485 [docs/7.9.0] Note rocprofiler-sdk is Instinct only. Reorg some files to match docs/7.0.x. (#5563)
* move versions.md and compat-matrix to match prod; note rocprofiler-sdk is instinct only

* update href in versions.md
2025-10-23 12:32:20 -04:00

17 lines
478 B
JavaScript

function ready(callback) {
if (document.readyState !== "loading") {
callback();
return;
}
document.addEventListener("DOMContentLoaded", callback);
}
ready(() => {
const versionListLink = document.querySelector(
"a.header-all-versions[href='https://rocm.docs.amd.com/en/latest/release/versions.html']",
);
versionListLink.textContent = "Preview versions";
versionListLink.href =
"https://rocm.docs.amd.com/en/docs-7.9.0/release/versions.html";
});