Change to 3sec delay before pausing chat state

This commit is contained in:
Lance Stout 2013-09-15 16:27:09 -07:00
parent 5a50847015
commit 1b89ec1a3e
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ module.exports = BasePage.extend({
}, },
handleKeyUp: function (e) { handleKeyUp: function (e) {
this.resizeInput(); this.resizeInput();
this.typingTimer = setTimeout(this.pausedTyping.bind(this), 5000); this.typingTimer = setTimeout(this.pausedTyping.bind(this), 3000);
if (this.typing && this.$chatInput.val().length === 0) { if (this.typing && this.$chatInput.val().length === 0) {
this.typing = false; this.typing = false;
client.sendMessage({ client.sendMessage({