Skip to content

Commit b79a48c

Browse files
committed
fix(search) Turn off autocomplete in search (as the options obscure the search results)
1 parent aacacfc commit b79a48c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

template/search-bs2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<form class="navbar-search pull-right">
22
<div id="search-cg" class="control-group" ng-class="errorClass">
3-
<input type="text" id="searchinput" ng-model="searchTarget" class="search-query" placeholder="{{searchPlaceholder}}" ng-keyup="handleKey($event)">
3+
<input type="text" autocomplete="off" id="searchinput" ng-model="searchTarget" class="search-query" placeholder="{{searchPlaceholder}}" ng-keyup="handleKey($event)">
44
</div>
55
</form>
66
<div class="results-container" ng-show="results.length >= 1">

template/search-bs3.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<form class="pull-right navbar-form">
22
<div id="search-cg" class="form-group" ng-class="errorClass">
3-
<input type="text" id="searchinput" ng-model="searchTarget" class="search-query form-control" placeholder="{{searchPlaceholder}}" ng-keyup="handleKey($event)">
3+
<input type="text" autocomplete="off" id="searchinput" ng-model="searchTarget" class="search-query form-control" placeholder="{{searchPlaceholder}}" ng-keyup="handleKey($event)">
44
</div>
55
</form>
66
<div class="results-container" ng-show="results.length >= 1">

0 commit comments

Comments
 (0)