MediaWiki:Gadget-rediger sektion0.js

Fra Wikipedia, den frie encyklopædi
// This will add an [edit] link at the top of all pages except preview pages and the main page
// by User:Pile0nades

// Add an [edit] link to pages
$(function () {
  // if this is preview page or generated page, stop
  if(
    document.getElementById("wikiPreview") ||
    document.getElementById("histlegend‎") ||
    document.getElementById("difference‎") ||
    document.getElementById("watchdetails") ||
    document.getElementById("ca-viewsource") ||
    window.location.href.indexOf("/wiki/Speciel:") != -1
  ) {
    if(window.location.href.indexOf("&action=edit&section=0") != -1) {
      if(document.getElementById("wpSummary")) {
      	document.getElementById("wpSummary").value = "/* Intro */ ";
      }
    }
    return;
  };

  // get the page title
  var pageTitle = mw.config.get('wgPageName');

  // create div and set innerHTML to link
  var divContainer = document.createElement("div");
  divContainer.innerHTML = '<div class="editsection">[<a href="/w/index.php?title='+pageTitle+'&action=edit&section=0" title="Edit section: '+pageTitle+'">redigér begyndelse</a>]</div>';

  // insert divContainer into the DOM below the h1
  var content = document.getElementById("content");
  if(window.location.href.indexOf("&action=edit") == -1 && content) {
  	const firstHeading = document.getElementsByTagName("h1")[0];
  	// Check our assumptions - do they share a parent node?
  	if ( firstHeading.parentNode === content ) {
	    content.insertBefore(divContainer, firstHeading);
  	}
  }

});