mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-08 06:55:46 +01:00
closes #3532
This commit is contained in:
@@ -186,7 +186,8 @@ define('forum/chats', ['components', 'string', 'sounds', 'forum/infinitescroll',
|
||||
Chats.sendMessage = function(toUid, inputEl) {
|
||||
var msg = inputEl.val();
|
||||
if (msg.length) {
|
||||
msg = msg +'\n';
|
||||
inputEl.val('');
|
||||
msg = msg + '\n';
|
||||
socket.emit('modules.chats.send', {
|
||||
touid:toUid,
|
||||
message:msg
|
||||
@@ -198,7 +199,6 @@ define('forum/chats', ['components', 'string', 'sounds', 'forum/infinitescroll',
|
||||
return app.alertError(err.message);
|
||||
}
|
||||
|
||||
inputEl.val('');
|
||||
sounds.play('chat-outgoing');
|
||||
Chats.notifyTyping(toUid, false);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user