Line 1:
Line 1:
β
/* Move top tabs inside body content */
β
addOnloadHook(function () {
β
content = document.getElementById("column-content"); // Find the main content column
β
β
footer = document.getElementById("footer"); // Find the footer
β
footer.parentNode.removeChild(footer); // Remove the footer from the global wrapper
β
content.appendChild(footer); // Place footer at the end of the content column;
β
β
tabs = document.getElementById("p-cactions"); // Find the top tab list
β
tabs.parentNode.removeChild(tabs); // Remove the tab list from the side column
β
content.insertBefore(tabs,content.firstChild); // Place tab list at the beginning of the content column
β
});