Jump to content

User:Jackmcbarn/common.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jackmcbarn (talk | contribs) at 21:29, 7 April 2014 (load the console). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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.
$('span.mw-rollback-link a').click(function(){return confirm("Rollback: Are you sure?")}); // Require confirmation for rollback
importScript('User:Jackmcbarn/advancedtemplatesandbox.js'); // Linkback: [[User:Jackmcbarn/advancedtemplatesandbox.js]]

// If you want this next script, you probably want to remove -unstable from it
importScript('User:Jackmcbarn/editProtectedHelper-unstable.js'); // Linkback: [[User:Jackmcbarn/editProtectedHelper.js]]

if(!document.getElementById('mw-scribunto-console')) {
	$('.mw-editTools').after('<div id="mw-scribunto-console"></div>');
	mw.loader.load('ext.scribunto.edit')
}

importScript('User:Dr pda/prosesize.js');
importScript('User:Mr.Z-man/closeAFD.js');
importScript('User:Anomie/previewtemplatelastmod.js'); // Linkback: [[User:Anomie/previewtemplatelastmod.js]]
window.LinkClassifierOnDemand = true; // not really, but we want to make our own onLoad hook
$(importScript('User:Anomie/linkclassifier.js')) // Linkback: [[User:Anomie/linkclassifier.js]]
	.load(function() {
		$(document).ready(function() {
			window.LinkClassifierOnDemand = false;
			LinkClassifier.cats['soft-redirect'] = ['Category:Wikipedia soft redirects', 'Category:Protected soft redirects', 'Category:Redirects to Wiktionary'].sort();
			LinkClassifier.onLoad();
		});
	});
importStylesheet('User:Jackmcbarn/linkclassifier.css');
importScript('User:Anomie/talklink.js'); // Linkback: [[User:Anomie/talklink.js]]
importStylesheet('User:Jackmcbarn/talklink.css'); // Linkback: [[User:Jackmcbarn/talklink.css]]

/* forget it, this is a losing battle
// collapsible-nav gets added after we run, so this ugly mess is needed to kill it
// this needs done because [[gerrit:83590]] and [[gerrit:83591]] removed a preference that used to do it
(function(){
var observer = new MutationObserver(function(mutations) {
	$('.collapsible-nav').removeClass('collapsible-nav');
	$('#mw-panel > .portal').addClass('persistent'); // catch any added later
});
observer.observe(document.querySelector('#mw-panel'), { childList: true, attributes: true, attributeFilter: [ 'class' ] });
})();
$('#mw-panel > .portal').addClass('persistent'); // this needs to happen now or it's too late to stop some changes
*/