Changes

←Blanked the page
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
  βˆ’
});
 
381

edits