User:BrandonXLF/CitationStyleMarker.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
This user script seems to have a documentation page at User:BrandonXLF/CitationStyleMarker and an accompanying .css page at User:BrandonXLF/CitationStyleMarker.css. |
/*** Citation Style Marker ***/
// Puts the type of citation style a citation is using next to it
// Adds a link in the toolbar to toggle the markers
// Documentation at [[en:w:User:BrandonXLF/CitationStyleMarker]]
// By [[en:w:User:BrandonXLF]]
// window.CSMarkerMode = 'always'; - Always how the style marker, no option to disable
// window.CSMarkerMode = 'both'; - Show the markers when there is more than one type of citation of a page
// window.CSMarkerMode = 'disabled'; - Hide the markers by default
// window.CSMarkerMode = 'enabled'; - Show the markers by default
$(function() {
mw.loader.load('//en.wikipedia.org/w/index.php?title=User:BrandonXLF/CitationStyleMarker.css&action=raw&ctype=text/css', 'text/css');
if (window.CSMarkerMode != 'always') {
var portletItem = mw.util.addPortletLink('p-tb', '#', 'Hide CS marker'),
classes = ['cs1', 'cs2', 'csvan', 'calsa'],
typeCount = classes.reduce(function(acc, cur) {
return acc + !!document.getElementsByClassName(cur).length;
}, 0);
if (!portletItem) return;
var portlet = portletItem.getElementsByTagName('a')[0];
portlet.addEventListener('click', function(e) {
var enabled = document.body.classList.contains('nocsmarker');
e.preventDefault();
document.body.classList[enabled ? 'remove' : 'add']('nocsmarker');
portlet.innerText = enabled ? 'Hide CS marker' : 'Show CS marker';
});
if (window.CSMarkerMode == 'disabled' || window.CSMarkerMode == 'both' && typeCount < 2) {
document.body.classList.add('nocsmarker');
portlet.innerText = 'Show CS marker';
}
}
});