Actions

User

Difference between revisions of "MK/monobook.js"

From Sonic Retro

< User:MK
 
Line 1: Line 1:
 
// This will add an [edit] link at the top of all pages except preview pages and the main page
 
// This will add an [edit] link at the top of all pages except preview pages and the main page
// by User:Pile0nades (edited by MK)
+
// by User:Pile0nades
+
 
 
// Add an [edit] link to pages
 
// Add an [edit] link to pages
 
addOnloadHook(function () {
 
addOnloadHook(function () {
  // if this is preview page or generated page, stop
+
// if this is preview page or generated page, stop
  if(
+
if(
    document.getElementById("wikiPreview") ||
+
document.getElementById("wikiPreview") ||
    document.getElementById("histlegend‎") ||
+
document.getElementById("histlegend‎") ||
    document.getElementById("difference‎") ||
+
document.getElementById("difference‎") ||
    document.getElementById("watchdetails") ||
+
document.getElementById("watchdetails") ||
    document.getElementById("ca-viewsource") ||
+
document.getElementById("ca-viewsource") ||
    window.location.href.indexOf("/Special:") != -1
+
window.location.href.indexOf("/wiki/Special:") != -1
  ) {
+
) {
    if(window.location.href.indexOf("&action=edit&section=0") != -1) {
+
if(window.location.href.indexOf("&action=edit&section=0") != -1) {
      document.getElementById("wpSummary").value = "/* Intro */ ";
+
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="/index.php?title='+pageTitle+'&action=edit&section=0" title="Edit section: '+pageTitle+'">edit intro</a>]</div>';
+
divContainer.innerHTML = '<div class="editsection">[<a href="/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]);
  }
+
}
+
 
 
});
 
});
 
// [[User:Lupin/popups.js]]
 
 
document.write('<script type="text/javascript" src="'
 
            + 'http://en.wikipedia.org/w/index.php?title=User:Lupin/popups.js'
 
            + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
 

Latest revision as of 01:23, 14 April 2008

// 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
addOnloadHook(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/Special:") != -1
 ) {
 if(window.location.href.indexOf("&action=edit&section=0") != -1) {
 document.getElementById("wpSummary").value = "/* Intro */ ";
 }
 return;
 };

 // get the page title
 var pageTitle = wgPageName;

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

 // insert divContainer into the DOM below the h1
 if(window.location.href.indexOf("&action=edit") == -1) {
 document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
 }

});