summaryrefslogtreecommitdiffstats
path: root/webapp/stores
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-01-30 15:43:34 -0500
committerGitHub <noreply@github.com>2017-01-30 15:43:34 -0500
commit450c0b3ccb091a3f84f35aca0319ba358ffd5633 (patch)
treeb10df23ff6a7410b9e61be2c8b1c1215e9b5aa28 /webapp/stores
parentb26329cdda2ff599d01afbe01b2e2df3896a6b57 (diff)
downloadchat-450c0b3ccb091a3f84f35aca0319ba358ffd5633.tar.gz
chat-450c0b3ccb091a3f84f35aca0319ba358ffd5633.tar.bz2
chat-450c0b3ccb091a3f84f35aca0319ba358ffd5633.zip
Improvments to typing messages (#5230)
Diffstat (limited to 'webapp/stores')
-rw-r--r--webapp/stores/user_typing_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/stores/user_typing_store.jsx b/webapp/stores/user_typing_store.jsx
index 85c10bfbe..8bbce117f 100644
--- a/webapp/stores/user_typing_store.jsx
+++ b/webapp/stores/user_typing_store.jsx
@@ -64,7 +64,7 @@ class UserTypingStoreClass extends EventEmitter {
Reflect.deleteProperty(this.typingUsers, loc);
}
this.emitChange();
- }, Constants.UPDATE_TYPING_MS);
+ }, parseInt(window.mm_config.TimeBetweenUserTypingUpdatesMilliseconds, 10));
this.emitChange();
}