JS

From ConsoleMods Wiki
Revision as of 03:05, 10 June 2023 by Derf (talk | contribs) (AUTO HIDE SIDEBAR ON MOBILE MOVED TO LOCALSETTINGS.PHP)
Jump to navigation Jump to search

/* TOGGLE HIGHLIGHT ON ORDERED LISTS WHEN CLICKED */ $(":not(.references li) ol li").click(function (e) { e.stopPropagation(); if(!($(this).hasClass("highlighted"))) { $(this).addClass("highlighted"); $(this).find("li").addClass("highlighted"); } else { $(this).removeClass("highlighted"); $(this).find("li").removeClass("highlighted"); } }); /* TOGGLE SIDEBAR VIA CONSOLEMODS TEXT */ $("#footer-partnersico:first-child").click(function (e) { e.stopPropagation(); if(!($('body').hasClass("sidebar-collapsed"))) { $('body').addClass("sidebar-collapsed"); } else { $('body').removeClass("sidebar-collapsed"); } }); /* BACK BUTTON ON TALK PAGES */ $("#ca-talk a").each(function() { if (window.location.href.includes("_talk")) { this.href = this.href.replace("_talk",""); $("#ca-talk a span").each(function() { this.innerHTML = "Back to Page" }); } if (window.location.href.includes("Talk:")) { this.href = this.href.replace("Talk:",""); $("#ca-talk a span").each(function() { this.innerHTML = "Back to Page" }); } });