Merge pull request #545 from nextcloud/focus-again-on-new-message-input-after-sending-a-message

Focus again on new message input after sending a message
This commit is contained in:
Joas Schilling 2018-01-09 11:45:26 +01:00 коммит произвёл GitHub
Родитель 4fa5078b7d d20dbf6ece
Коммит 2fc857efa0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -302,6 +302,8 @@
$form.find('.submitLoading').addClass('hidden');
$form.find('.message').text('').prop('contenteditable', true);
$form.find('.message').focus();
// The new message does not need to be explicitly added to the list
// of messages; it will be automatically fetched from the server
// thanks to the auto-refresh of the list.
@ -312,6 +314,8 @@
$form.find('.submitLoading').addClass('hidden');
$form.find('.message').prop('contenteditable', true);
$form.find('.message').focus();
OC.Notification.show(t('spreed', 'Error occurred while sending message'), {type: 'error'});
},