Move the message attribute to the correct element

Follow up to https://github.com/wikimedia/jquery.uls/pull/243 ,
addressing a comment by @Nikerabbit.
This commit is contained in:
Amire80
2016-12-04 11:40:45 +02:00
parent c732844efc
commit cafe908d07

View File

@@ -35,11 +35,12 @@
.addClass( 'uls-no-found-more' )
.append(
$( '<div>' )
.attr( 'data-i18n', 'uls-search-help' )
.addClass( '' )
.append(
$( '<p>' ).append(
$( '<span>' ).text( 'You can search by language name, script name, ISO code of language or you can browse by region.' )
$( '<span>' )
.attr( 'data-i18n', 'uls-search-help' )
.text( 'You can search by language name, script name, ISO code of language or you can browse by region.' )
)
)
)