Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
Disable search box auto capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Tuleja committed Nov 27, 2018
1 parent f610989 commit bbe9e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/search/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<form role="search" data-ng-submit="sch.search()" data-ng-class="{'loading': sch.loading, 'active': !sch.mobileView || sch.activeForm}" class='search-box'>
<div class="wrapper" data-ng-class="{'has-error': sch.badQuery}">
<input id="search" type="text" class="input search" data-ng-model="sch.q" placeholder="Find a transaction, address, delegate or block"
data-ng-submit="sch.search()" data-ng-blur="sch.hideSuggestion()" autocomplete="off" />
data-ng-submit="sch.search()" data-ng-blur="sch.hideSuggestion()" autocomplete="off" autocapitalize="none" />
<span class="glyphicon" aria-hidden="true" data-ng-mousedown="sch.onSearchIconClick()" data-ng-class="{'glyphicon-remove': sch.mobileView && sch.activeForm, 'glyphicon-search': !sch.mobileView || !sch.activeForm}"></span>
<div class="search-suggestion-list list-group"
ng-if="sch.showingResults && sch.results">
Expand Down

0 comments on commit bbe9e93

Please sign in to comment.