MediaWiki:Common.js: Difference between revisions

m
no edit summary
>Abcboy
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: // This will add an [edit intro] link at the top of all pages except preview pages and the main pag...")
 
>Abcboy
mNo edit summary
Line 4: Line 4:
// by User:Pile0nades on Wikipedia
// by User:Pile0nades on Wikipedia


addOnloadHook(function () {
if ( $wgUser->isLoggedIn() ) {
  // if this is preview page or generated page, stop
  addOnloadHook(function () {
  if(
    // if this is preview page or generated page, stop
    document.getElementById("wikiPreview") ||
    if(
    document.getElementById("histlegend‎") ||
      document.getElementById("wikiPreview") ||
    document.getElementById("difference‎") ||
      document.getElementById("histlegend‎") ||
    document.getElementById("watchdetails") ||
      document.getElementById("difference‎") ||
    document.getElementById("ca-viewsource") ||
      document.getElementById("watchdetails") ||
    window.location.href.indexOf("/wiki/Special:") != -1
      document.getElementById("ca-viewsource") ||
  ) {
      window.location.href.indexOf("/wiki/Special:") != -1
    if(window.location.href.indexOf("&action=edit&section=0") != -1) {
    ) {
      document.getElementById("wpSummary").value = "/* Intro */ ";
      if(window.location.href.indexOf("&action=edit&section=0") != -1) {
    }
        document.getElementById("wpSummary").value = "/* Intro */ ";
    return;
      }
  };
      return;
    };
   
   
  // get the page title
    // get the page title
  var pageTitle = wgPageName;
    var pageTitle = wgPageName;
   
   
  // create div and set innerHTML to link
    // create div and set innerHTML to link
  var divContainer = document.createElement("div");
    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+'">edit intro</a>]</div>';
    divContainer.innerHTML = '<div class="editsection">[<a href="/w/index.php?title='+pageTitle+'&action=edit&section=0" title="Edit section: '+pageTitle+'">edit intro</a>]</div>';
   
   
  // insert divContainer into the DOM below the h1
    // insert divContainer into the DOM below the h1
  if(window.location.href.indexOf("&action=edit") == -1) {
    if(window.location.href.indexOf("&action=edit") == -1) {
    document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
      document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
  }
    }
  });
});
}
Anonymous user