Interested Article - Gadget-disambiguationLinks.js
susan
- 2021-08-06
- 1
После
сохранения или
недавних изменений
очистите кэш браузера
.
Код
относится к гаджету
:
Выделить ссылки
на
неоднозначности
розовым цветом
( function () {
function extendLinkTitle() {
if( mw.loader.getState( 'ext.popups' ) !== 'ready' ) {
var $nodes = $( 'a.mw-disambig' );
$nodes.each( function () {
var $node = $( this );
var title = $node.attr( 'title' );
if( title.indexOf( '(значения)' ) < 0 ) {
$node.attr( 'title', [ title, 'страница значений' ].join( ' — ' ) );
}
} );
}
}
// In case other projects copypaste the code and forget to implement
// runAsEarlyAsPossible() in MediaWiki:Common.js, which is too easy a mistake to
// make to not account for.
if ( typeof runAsEarlyAsPossible === 'undefined' ) {
$( extendLinkTitle );
} else {
runAsEarlyAsPossible( extendLinkTitle );
}
} )();
susan
- 2021-08-06
- 1