_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Technical 13/Scripts/Gadget-listStyles.js

Nowadays, User:Technical 13/Scripts/Gadget-listStyles.js is a topic that has gained great relevance in today's society. Over time, it has become a fundamental aspect that affects numerous aspects of daily life. There are many people who have been influenced by User:Technical 13/Scripts/Gadget-listStyles.js, either directly or indirectly. For this reason, it is vitally important to delve into all aspects related to User:Technical 13/Scripts/Gadget-listStyles.js in order to understand its impact on our reality. In this article, we will delve into the exciting world of User:Technical 13/Scripts/Gadget-listStyles.js, exploring its origins, evolution and consequences in different areas. Along these lines, we will discover the importance that User:Technical 13/Scripts/Gadget-listStyles.js has acquired in the modern world and how it has become a topic of debate and reflection in today's society.
var path = $( 'ul' );
function addPtLink(pID, nextnode, path){
	var listStyle = mw.util.addPortletLink(
		'p-' + pID,
		'#',
		'(list style)',
		'pt-liststyle',
		'Switch list style between bullet and numbered ',
		'`',
		'#pt-' + nextnode
	);
	$( listStyle ).click( function ( e ) {
		e.preventDefault();
		path.css( 'list-style-image', 'none' );
		path.css( 'list-style-type', function (i, val) {
			return val === "decimal" ? "disc" : "decimal";
		});
	});
}
var pageAction = mw.config.get( 'wgAction' );
if ( pageAction != 'history' ){
	var nsNumber = mw.config.get( 'wgNamespaceNumber' );
	if ( nsNumber === -1 ){
		// Special: pages
		var specialPageName = mw.config.get( 'wgCanonicalSpecialPageName' );
		if ( specialPageName == 'Whatlinkshere' ){
			// ]
			path = $( 'ul#mw-whatlinkshere-list' );	
			addPtLink('personal', 'userpage', path);
		} 	else if ( specialPageName == 'Contributions' ){
			// ]
			path = $('a.mw-changeslist-date').parents('ul');
			addPtLink( 'personal', 'logout', path );
		}
	} else if ( nsNumber != 14){
//		var pageNameList = mw.config.get( 'wgPageName' );
	} else {
		// ]
		path = $( 'div.mw-content-ltr' ).find( 'ul' );
		addPtLink( 'personal', 'userpage', path);
	}
} else {
	// &action=history
	path = $( 'ul#pagehistory' );
	addPtLink( 'personal', 'userpage', path );
}