Plex-Meta-Manager/docs/stylesheets/branch.js
2023-11-08 17:00:47 -05:00

31 lines
1.2 KiB
JavaScript

// 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 <span class="md-ellipsis">
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 <span class="md-ellipsis">
const ellipsisSpan = document.querySelector(".md-ellipsis");
if (ellipsisSpan) {
ellipsisSpan.textContent = "PMM Develop Wiki";
}
}
}
// Call the function on page load
window.addEventListener("load", checkURLForBranch);