MediaWiki:Gadget-NewSection.js: differenze tra le versioni

Da Semi del Verbo, l'enciclopedia dell'influenza del Vangelo sulla cultura
m (spazio)
 
m (una versione importata)
 
(Nessuna differenza)

Versione attuale delle 22:40, 30 ago 2020

/**
 * create a "New section" link for the last section header (if present for that page at all)
 */
( function ( mw, $ ) {
	mw.hook( 'wikipage.content' ).add( function ( $content ) {
		var $newSectionLink = $( '#ca-addsection a' );
		if ( $newSectionLink.length ) {
			// add it within the brackets of last section
			$content.find( 'span.mw-editsection:last a:last' )
			.after(
				$newSectionLink.clone() // create a copy
				// lowercase text
				.text( $newSectionLink.text().toLowerCase() )
				// avoid duplicate accesskey
				.removeAttr( 'accesskey' ).updateTooltipAccessKeys()
			)
			.after( ' | ' ); // see [[MediaWiki:Pipe-separator]]
		}
	} );
}( mediaWiki, jQuery ) );