Merge pull request #1822 from normanjaeckel/ChatBox

Disabled autocomplete for chat box.
This commit is contained in:
Oskar Hahn 2016-01-10 00:58:45 +01:00
commit f4e91caeaf
1 changed files with 6 additions and 1 deletions

View File

@ -51,7 +51,12 @@
<div id="chatbox-form">
<form ng-submit="sendMessage()">
<div class="input-group">
<input ng-model="newMessage" id="messageInput" class="form-control" type="text">
<input
ng-model="newMessage"
id="messageInput"
class="form-control"
type="text"
autocomplete="off">
<span class="input-group-btn">
<button type="submit" class="btn btn-default" id="messageSendButton">
<i class="fa fa-comment"></i>