MediaWiki:Common.js: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 12:
 
// Sort table by the first column
/*runUntilSuccess(function() {
var tables = document.getElementsByClassName("ram_rom_map");
for (var i = 0; i < tables.length; i++) {
Line 27:
}
return true;
});*/
 
// Add the ending address to the length column
Line 53:
var svgs = canvas.getElementsByTagName("svg");
if (svgs.length == 0 || svgs[0].getAttribute("data-element-id") == null) {
console.log("No SVG found");
return false;
}
console.log("SVG found");
var clone = svgs[0].cloneNode(true);
Line 63 ⟶ 61:
var bbox = clone.getBBox();
console.log(bbox);
clone.setAttribute("width", bbox.width + "px");
clone.setAttribute("height", bbox.height + "px");
clone.setAttribute("viewBox", bbox.x + " " + bbox.y + " " + bbox.width + " " + bbox.height);
 
var div = parent.parentElement;
div.style.height = "auto";
}
return true;