User:Ec5618/monobook.js
Jump to navigation
Jump to search
Template:Script doc autoNote: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the Template:Key press key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
//EDIT INTRO SCRIPT
function editTopLink() {
// if this is preview page or generated page, stop
if(document.getElementById("wikiPreview") || window.location.href.indexOf("Special:") != -1) return;
// get the page title
var pageTitle = document.title.split(" - ")[0].replace(" ", "_");
// create div and set innerHTML to link
var divContainer = document.createElement("div");
divContainer.innerHTML = '<div class="editsection" style="float:right;margin-left:5px;margin-top:43px;">[<a href="/w/index.php?title='+pageTitle+'&action=edit§ion=0" title="'+document.title.split(" - ")[0]+'">edit intro</a>]</div>';
// this is a hack so I can refer to the h1 by an id
document.getElementsByTagName("h1")[0].id = "f1r5tH34d1ng";
var theH1 = document.getElementById("f1r5tH34d1ng");
// insert divContainer into the DOM before the h1
document.getElementById("content").insertBefore(divContainer, theH1);
}
// setTimeout does not need a string reference to work
setTimeout(editTopLink, 0) // this is equivalent of onload
// POP UP SCRIPT
// [[User:Lupin/popups.js]] - please include this line
mw.loader.load(
'https://en.wikipedia.org/w/index.php?title=User:Lupin/popups.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s');
// [[User:Lupin/popups.js]] - please include this line
mw.loader.load(
'https://en.wikipedia.org/w/index.php?title=User:Lupin/popups.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s');
popupDelay=0.7;
simplePopups=true;
popupStructure='original'
popupHistoricalLinks=true
popupAdminLinks=false;
popupImages=false;
popupShortcutKeys=false;
popupFixDabs=true;
popupPreviews=false;
popupOnlyArticleLinks=false;
captionsize=1;