diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-08-22 01:54:37 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-08-22 01:54:37 +0100 |
commit | 3248aed03b03e0eba3a4b43776ef2f7685b27701 (patch) | |
tree | 4371ff20e0882d9658856a8b1615957518890f2b /webclient/room/room.html | |
parent | fix weird fontsizes on iOS (diff) | |
download | synapse-3248aed03b03e0eba3a4b43776ef2f7685b27701.tar.xz |
fix mainInput retaining focus between sending consecutive messages by disabling commit 955662d6
Diffstat (limited to 'webclient/room/room.html')
-rw-r--r-- | webclient/room/room.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webclient/room/room.html b/webclient/room/room.html index e7560a5dc4..95da067714 100644 --- a/webclient/room/room.html +++ b/webclient/room/room.html @@ -77,10 +77,10 @@ {{ state.user_id }} </td> <td width="*" style="min-width: 100px"> - <input id="mainInput" ng-model="textInput" ng-enter="send()" ng-disabled="state.sending" ng-focus="true" autocomplete="off" tab-complete/> + <input id="mainInput" ng-model="textInput" ng-enter="send()" ng-focus="true" autocomplete="off" tab-complete/> </td> <td width="150px"> - <button ng-click="send()" ng-disabled="state.sending">Send</button> + <button ng-click="send()">Send</button> <button m-file-input="imageFileToSend">Send Image</button> </td> <td width="1"> |