User:Az1568/monobook.js: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
Az1568 (talk | contribs)
try this
 
Cbrown1023 (talk | contribs)
Done.
 
(29 intermediate revisions by 2 users not shown)
Line 1: Line 1:
// <source lang="javascript">
//<pre><nowiki>
importScriptURI('http://meta.wikimedia.org/w/index.php?title=User:Az1568/global.js&action=raw&ctype=text/javascript')
if (window.location.href.indexOf('action=edit') != -1 && window.location.href.indexOf('remnoedit=1') != -1) {
// </source>
function RemoveNoEdit() {
document.getElementById('wpSummary').value = "Remove __NOEDITSECTION__";
var contents = document.getElementById('wpTextbox1').value;
var newcontents = contents.replace(/__NOEDITSECTION__/g, "");
document.getElementById('wpTextbox1').value = newcontents;
document.getElementById('wpWatchthis').checked = "";
document.getElementById('wpDiff').click();
}
addOnloadHook(function(){ RemoveNoEdit(); });
}
if(wgCanonicalNamespace != "Special") {
addOnloadHook(function(){
var taburl = "http://wikimediafoundation.org/w/index.php?title="+wgPageName+"&action=edit&remnoedit=1";
addTab(taburl, "Remove noedit", "ca-examplejpgfix", "This is to remove __NOEDITSECTION__ from stuff");
});
}
//</nowiki></pre>

Latest revision as of 21:27, 31 December 2009

// <source lang="javascript">
importScriptURI('http://meta.wikimedia.org/w/index.php?title=User:Az1568/global.js&action=raw&ctype=text/javascript')
// </source>