Autofocus the Search field

So on page load a user can immediately start typing a search without having to manually navigate to it. Also a big bonus for accessibility
pull/4193/head
Abe Kline 3 years ago committed by GitHub
parent 734b07accf
commit c6129704ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,5 @@
<form [formGroup]='searchForm'>
<mat-form-field floatLabel="never" style="width: 100%;">
<input id="nav-search" matInput placeholder="{{'NavigationBar.Search' | translate}}" formControlName='input'>
<input id="nav-search" autofocus="autofocus" matInput placeholder="{{'NavigationBar.Search' | translate}}" formControlName='input'>
</mat-form-field>
</form>
</form>

Loading…
Cancel
Save