Enable autocomplete on input, disable on search

In essence, this reverts a29905e02c which doesn't make much sense to me
This commit is contained in:
Lorenz Hübschle-Schneider 2015-02-08 11:39:37 +01:00 committed by Lorenz Hübschle-Schneider
commit a0a191f104
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<form class="form form-horizontal" id="inputform" ng-submit="sendMessage()">
<div class="input-group">
<textarea id="{{inputId}}" class="form-control favorite-font" ng-trim="false" rows="1" autocomplete="off" ng-model="command" ng-focus="hideSidebar()">
<textarea id="{{inputId}}" class="form-control favorite-font" ng-trim="false" rows="1" autocomplete="on" ng-model="command" ng-focus="hideSidebar()">
</textarea>
<span class="input-group-btn">
<button class="btn btn-default btn-primary unselectable">Send</button>