Show the same tooltips on compact language links
The tooltips include the title of the target article and the name of the language in the user's language. Bug: T160976 Change-Id: If3dd416e4a6f13b7b1366d30a1a3807a505346cb
This commit is contained in:
@@ -172,12 +172,15 @@
|
|||||||
},
|
},
|
||||||
languageDecorator: function ( $languageLink, language ) {
|
languageDecorator: function ( $languageLink, language ) {
|
||||||
var data = self.interlanguageList[ language ];
|
var data = self.interlanguageList[ language ];
|
||||||
// set href and text exactly same as what was in
|
// Set href, text, and tooltip exactly same as what was in
|
||||||
// interlanguage link. The ULS autonym might be different in some
|
// interlanguage link. The ULS autonym might be different in some
|
||||||
// cases like sr. In ULS it is "српски", while in interlanguage links
|
// cases like sr. In ULS it is "српски", while in interlanguage links
|
||||||
// it is "српски / srpski"
|
// it is "српски / srpski"
|
||||||
$languageLink
|
$languageLink
|
||||||
.prop( 'href', data.href )
|
.prop( {
|
||||||
|
href: data.href,
|
||||||
|
title: data.element.title
|
||||||
|
} )
|
||||||
.text( data.autonym );
|
.text( data.autonym );
|
||||||
|
|
||||||
// This code is to support badges used in Wikimedia
|
// This code is to support badges used in Wikimedia
|
||||||
|
|||||||
Reference in New Issue
Block a user