Conditionally render search placeholder text (#450)
Placeholder text was appearing cropped in menuWidth = 'narrow' This commit serves to conditionally render placeholder text to a shorter 'Search' Bug: https://phabricator.wikimedia.org/T318633
This commit is contained in:
@@ -174,7 +174,11 @@
|
||||
i18n: function () {
|
||||
if ( $.i18n ) {
|
||||
this.$menu.find( '[data-i18n]' ).i18n();
|
||||
this.$languageFilter.prop( 'placeholder', $.i18n( 'uls-search-placeholder' ) );
|
||||
if ( this.getMenuWidth() === 'narrow' ) {
|
||||
this.$languageFilter.prop( 'placeholder', $.i18n( 'uls-search-placeholder-short' ) );
|
||||
} else {
|
||||
this.$languageFilter.prop( 'placeholder', $.i18n( 'uls-search-placeholder' ) );
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user