MediaWiki:Common.js

From ZAMN Hacking
Revision as of 00:25, 8 April 2024 by Piranhaplant (talk | contribs) (Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: // Extra functionality for RAM/ROM maps $(function() { for (const table of document.getElementsByClassName("ram_rom_map")) { // Sort table by the first column table.getElementsByTagName("th")[0].click(); // Add the ending address to the length column for (const row of table.getElementsByTagName("tbody")[0].children) { const address = row.children[0].innerText; const length = par...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */

// Extra functionality for RAM/ROM maps
$(function() {
	for (const table of document.getElementsByClassName("ram_rom_map")) {
		// Sort table by the first column
		table.getElementsByTagName("th")[0].click();
		
		// Add the ending address to the length column
		for (const row of table.getElementsByTagName("tbody")[0].children) {
			const address = row.children[0].innerText;
			const length = parseInt(row.children[1].innerText);
			const endAddress = address.substr(0, 4) + (parseInt(address.substr(4, 4), 16) + length).toString(16).padStart(4, "0");
			row.children[1].title = "[" + address + ", " + endAddress + ")";
		}
	}
});