User:Bkonrad/common.js

Source: 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.
// Change color of various link types
// Colors are defined in [[User:UncleDouggie/vector.css]]
// Please keep the linkback comment so that Anomie can know who is using this.
LinkClassifierOnDemand=true;
importScript('User:Anomie/linkclassifier.js'); // Linkback: [[User:Anomie/linkclassifier.js]]
//mw.util.addPortletLink('p-tb', 'javascript:LinkClassifier.onDemand()', 'Link classifier');
// addOnloadHook(function(){
//   mw.util.addPortletLink('p-tb', 'javascript:LinkClassifier.onDemand()', 'linkclassifier');
// 	});
// 'p-tb' places the action link in the toolbox
$.when( mw.loader.using( 'mediawiki.util' ), $.ready ).then( function() 
	{ var el = mw.util.addPortletLink('p-tb', '', 'Link classifier');
	$(el).click(function(e) {
		LinkClassifier.onDemand();
		e.preventDefault();
	} );
} );