mirror of
https://github.com/ROCm/ROCm.git
synced 2026-04-27 03:01:52 -04:00
8 lines
341 B
JavaScript
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";
|
|
});
|