User:The Obento Musubi/monobook.js/tabs.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/* <pre><nowiki> */
 
// ========== Content Relating to this Script Only ============
 
if (document.title.indexOf("Editing ") == 0) {
	if (window.addEventListener) window.addEventListener("load", loadTabs, false);
	else if (window.attachEvent) window.attachEvent("onload", loadTabs);
}
 
if (window.location.href.indexOf("Special") == -1) {
    if (window.addEventListener) window.addEventListener("load", loadNonEdit, false);
    else if (window.attachEvent) window.attachEvent("onload", loadNonEdit);
}
 
function loadTabs() {
	sNamespace = getNameSpace();
	bContent = checkContent();
}
 
function loadNonEdit() {
	addQpp();	//	Purge Page Button
}
 
// ========== Purge Button ==========
 
function doQpp() {
	var nurl = "http://en.wikipedia.org/w/index.php?title=" + getPname() + "&action=purge";
	document.location = nurl;
}
 
function addQpp() {
	addTab("javascript:doQpp()", "purge", "ca-pp", "Purge this page.", "");
}
 
/* </nowiki></pre> */