User:HyperNervie/sandbox

< User:HyperNervie
Revision as of 20:10, 29 August 2025 by HyperNervie (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Input these in your browser console:

mw.hook("wikipage.content").add(function ($content) {
	$content.find(".rhwiki-tabberneue").each(function (_, tabberDiv) {
		$(tabberDiv)
			.children(".rhwiki-tabberneue-menu")
			.children(".rhwiki-tabberneue-label")
			.each(function (_, labelDiv) {
				$(labelDiv).on("click", clickOnLabel);
			});
	});
	function clickOnLabel() {
		const $this = $(this);
		if ($this.hasClass("selected")) return;

		const $tabber = $this.closest(".rhwiki-tabberneue");
		if ($tabber.length === 0) return;

		const $labels = $tabber
			.children(".rhwiki-tabberneue-menu")
			.children(".rhwiki-tabberneue-label");
		const selected = $labels.index($this);
		if (selected < 0) return;

		const $panels = $tabber
			.children(".rhwiki-tabberneue-content")
			.children(".rhwiki-tabberneue-panel");
		for (let i = 0; i < $labels.length && i < $panels.length; i++)
			if (i === selected) {
				$($labels[i]).addClass("selected");
				$($panels[i]).removeClass("hidden");
			} else {
				$($labels[i]).removeClass("selected");
				$($panels[i]).addClass("hidden");
			}
	}
});

Current "TabStart-content-TabEnd" solution renders a series of pairs of label and panel. Before MediaWiki:Gadget-Tabber.js is loaded, all panels are visible. In extreme cases where the script fails to load, the panels are left there forever.

ConsoleGBA Icon.png
Prologue GBA The Clappy Trio 2.png
ConsoleArcade Icon.png
Prologue Arcade The Clappy Trio 2.png
ConsoleWii Icon.png
Prologue Wii The Clappy Trio 2.png
Console3DS Icon.png
Prologue 3DS The Clappy Trio 2.png

Here we have only one visible panel at the beginning, and the labels are styled properly so that when MediaWiki:Gadget-Tabber.js loads, there won't be any change to page appearance. Even if the script doesn't load successfully, readers just can't switch panels by clicking on labels.

ConsoleGBA Icon.png
ConsoleArcade Icon.png
ConsoleWii Icon.png
Console3DS Icon.png
Prologue Wii The Clappy Trio 2.png