Files
ROCm/docs/sphinx/static/next-button-install-page.js
2025-12-11 16:51:22 -05:00

8 lines
341 B
JavaScript

document.addEventListener("DOMContentLoaded", () => {
const nextLink = document.querySelector("footer.prev-next-footer a.right-next");
const nextTitle = nextLink.querySelector(".prev-next-title");
console.log(nextLink);
nextTitle.textContent = "Build the ROCm Core SDK from source";
nextLink.href = "./build-from-source.html";
});