pull/1144/head
Konstantyn Pahsura 9 years ago
parent a67087b6de
commit 00aee89709
  1. 6
      modules/UI/side_pannels/chat/Chat.js

@ -157,6 +157,12 @@ function resizeChatConversation() {
chat.height(window.innerHeight - 15 - msgareaHeight);
}
/**
* Focus input after 400 ms
* Found input by id
*
* @param id {string} input id
*/
function deferredFocus(id){
setTimeout(function (){
$(`#${id}`).focus();

Loading…
Cancel
Save