Content deleted Content added
|
|
//syntax highlighter
mw.loader.load('//www.mediawiki.org/w/index.php?title=MediaWiki%3AGadget-DotsSyntaxHighlighter.js&action=raw&ctype=text/javascript');
// this script will remove editing from every redlink
$(document).ready(function() {
window.setInterval(()=> {
$('a.new').each(function() {
if (new URL(window.___location.origin + $(this).attr("href")).searchParams.get("action")) {
$(this).attr("href", function() {var url = new URL(window.___location.origin + $(this).attr("href"));url.searchParams.delete("action");return url;});
}
});
$('.new').each(function() {
if (new URL(window.___location.origin + $(this).find("a").attr("href")).searchParams.get("action")) {
$(this).find("a").attr("href", function() {var url = new URL(window.___location.origin + $(this).attr("href"));url.searchParams.delete("action");return url;});
}
});
}, 100);
});
importScript('User:EnterpriseyBot/delsort.js'); // Backlink: [[User:EnterpriseyBot/delsort.js]]
|