MediaWiki:Common.js: Difference between revisions

From ZAMN Hacking
Content added Content deleted
(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...")
 
No edit summary
Line 3: Line 3:
// Extra functionality for RAM/ROM maps
// Extra functionality for RAM/ROM maps
$(function() {
$(function() {
for (const table of document.getElementsByClassName("ram_rom_map")) {
const tables = document.getElementsByClassName("ram_rom_map");
for (let i = 0; i < tables.length; i++) {
const table = tables[i];
// Sort table by the first column
// Sort table by the first column
table.getElementsByTagName("th")[0].click();
table.getElementsByTagName("th")[0].click();
// Add the ending address to the length column
// Add the ending address to the length column
for (const row of table.getElementsByTagName("tbody")[0].children) {
const rows = table.getElementsByTagName("tbody")[0].children;
for (let j = 0; j < rows.length; j++) {
const row = rows[j];
const address = row.children[0].innerText;
const address = row.children[0].innerText;
const length = parseInt(row.children[1].innerText);
const length = parseInt(row.children[1].innerText);

Revision as of 00:44, 8 April 2024

/* Any JavaScript here will be loaded for all users on every page load. */

// Extra functionality for RAM/ROM maps
$(function() {
	const tables = document.getElementsByClassName("ram_rom_map");
	for (let i = 0; i < tables.length; i++) {
		const table = tables[i];
		// Sort table by the first column
		table.getElementsByTagName("th")[0].click();
		
		// Add the ending address to the length column
		const rows = table.getElementsByTagName("tbody")[0].children;
		for (let j = 0; j < rows.length; j++) {
			const row = rows[j];
			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 + ")";
		}
	}
});