Update jquery.uls from upstream

Updating to https://github.com/wikimedia/jquery.uls/commit/a5a470179221d870a05b08ffbb71bfecfab60a62

Bug: T328956
Change-Id: Ibbce56b36231dc1e44bdff2542b4735c870cfe00
This commit is contained in:
Abijeet
2023-03-13 19:24:04 +05:30
committed by Abijeet Patro
parent 03c67dce84
commit dc6b8da768
+4
View File
@@ -148,6 +148,10 @@
*/ */
highlightLanguageOption: function () { highlightLanguageOption: function () {
var $listItems = this.getLanguageOptionListItems(); var $listItems = this.getLanguageOptionListItems();
// There are no language items. Nothing to highlight.
if ( !$listItems.length ) {
return;
}
$listItems.removeClass( 'uls-language-option--highlighted' ); $listItems.removeClass( 'uls-language-option--highlighted' );
var $selectedItem = $listItems.eq( this.navigationIndex ); var $selectedItem = $listItems.eq( this.navigationIndex );