Difference between revisions of "User:Gran PC/common.js"

From Project X Wiki
Jump to: navigation, search
 
Line 4: Line 4:
 
//Instructions: Selecting the "rollback all" tab when viewing a user's contributions history
 
//Instructions: Selecting the "rollback all" tab when viewing a user's contributions history
 
//will open all rollback links displayed there. (Use with caution)
 
//will open all rollback links displayed there. (Use with caution)
   
+
  alert("penises");
 
function rollbackEverythingButton() {
 
function rollbackEverythingButton() {
 +
alert("wowe");
 
   var hasRollback = getElementsByClassName(document, "span", "mw-rollback-link");
 
   var hasRollback = getElementsByClassName(document, "span", "mw-rollback-link");
 
   if (hasRollback[0] && (document.title.indexOf("User contributions") != -1) ) {
 
   if (hasRollback[0] && (document.title.indexOf("User contributions") != -1) ) {

Latest revision as of 09:34, 10 August 2012

//Mass rollback function
//Written by John254
//Adapted from User:Mr.Z-man/rollbackSummary.js
//Instructions: Selecting the "rollback all" tab when viewing a user's contributions history
//will open all rollback links displayed there. (Use with caution)
 alert("penises");
function rollbackEverythingButton() {
alert("wowe");
  var hasRollback = getElementsByClassName(document, "span", "mw-rollback-link");
  if (hasRollback[0] && (document.title.indexOf("User contributions") != -1) ) {
alert("penis");
    addPortletLink('p-cactions', 'javascript:rollbackEverything()', "rollback all", "ca-rollbackeverything", "rollback all edits displayed here");
  }
}
addOnloadHook(rollbackEverythingButton);
function rollbackEverything() {
    for (var i in document.links) {
      if (document.links[i].href.indexOf('action=rollback') != -1) {
        window.open(document.links[i].href);
      }
    }
}