Add HTML ID to tag filter input
Makes it so if you click "Tag filter" the input box is now focused. Bug: 56175 Change-Id: I502f86f227bc0d1cc5ea936d9047bc51d169323a
This commit is contained in:
parent
86d8a5f46f
commit
53a8acaf8a
1 changed files with 1 additions and 1 deletions
|
|
@ -232,7 +232,7 @@ class ChangeTags {
|
|||
}
|
||||
|
||||
$data = array( Html::rawElement( 'label', array( 'for' => 'tagfilter' ), wfMessage( 'tag-filter' )->parse() ),
|
||||
Xml::input( 'tagfilter', 20, $selected, array( 'class' => 'mw-tagfilter-input' ) ) );
|
||||
Xml::input( 'tagfilter', 20, $selected, array( 'class' => 'mw-tagfilter-input', 'id' => 'tagfilter' ) ) );
|
||||
|
||||
if ( !$fullForm ) {
|
||||
return $data;
|
||||
|
|
|
|||
Loading…
Reference in a new issue