// custom.js // Function to check if the current URL contains "config" or "metadata" function checkURLForBranch() { const currentURL = window.location.href; if (currentURL.indexOf("nightly") !== -1) { // If "config" is found in the URL, change the CSS of .md-header to red document.querySelector(".md-header").style.backgroundColor = "#262dbd"; document.querySelector(".md-tabs").style.backgroundColor = "#262dbd"; // Change the text of const ellipsisSpan = document.querySelector(".md-ellipsis"); if (ellipsisSpan) { ellipsisSpan.textContent = "PMM Nightly Wiki"; } } else if (currentURL.indexOf("develop") !== -1) { // If "metadata" is found in the URL, change the CSS of .md-header to yellow document.querySelector(".md-header").style.backgroundColor = "#ffa724"; document.querySelector(".md-tabs").style.backgroundColor = "#ffa724"; // Change the text of const ellipsisSpan = document.querySelector(".md-ellipsis"); if (ellipsisSpan) { ellipsisSpan.textContent = "PMM Develop Wiki"; } } } // Call the function on page load window.addEventListener("load", checkURLForBranch);