mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-14 10:34:53 +00:00
ed1501c577
Change-Id: I8237dd3aa9ad73dce59e9a9bf001d6af5de8e185
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Adds accessibility attributes to citation links.
|
|
*
|
|
* @see https://phabricator.wikimedia.org/T40141
|
|
* @author Marius Hoch <hoo@online.de>
|
|
*/
|
|
mw.hook( 'wikipage.content' ).add( ( $content ) => {
|
|
const accessibilityLabelOne = mw.msg( 'cite_references_link_accessibility_label' );
|
|
const accessibilityLabelMany = mw.msg( 'cite_references_link_many_accessibility_label' );
|
|
|
|
$content.find( '.mw-cite-backlink' ).each( ( i, el ) => {
|
|
const $links = $( el ).find( 'a' );
|
|
|
|
if ( $links.length > 1 ) {
|
|
// This citation is used multiple times. Let's only set the accessibility
|
|
// label on the first link, the following ones should then be
|
|
// self-explaining. This is needed to make sure this isn't getting too
|
|
// wordy.
|
|
$links.eq( 0 ).prepend(
|
|
$( '<span>' )
|
|
.addClass( 'cite-accessibility-label' )
|
|
// Also make sure we have at least one space between the accessibility
|
|
// label and the visual one
|
|
.text( accessibilityLabelMany + ' ' )
|
|
);
|
|
} else {
|
|
$links
|
|
.attr( 'aria-label', accessibilityLabelOne )
|
|
.attr( 'title', accessibilityLabelOne );
|
|
}
|
|
} );
|
|
} );
|