summaryrefslogtreecommitdiffstats
path: root/web/react/utils/utils.jsx
diff options
context:
space:
mode:
authorFlorian Orben <florian.orben@gmail.com>2015-12-04 20:18:49 +0100
committerFlorian Orben <florian.orben@gmail.com>2015-12-09 22:29:54 +0100
commit99d79eee56a1b5a27f18fffd90545b4aef191bba (patch)
treeda57414d03887a1cdff3f8c51caa0bd74db7f0c1 /web/react/utils/utils.jsx
parent985dc06e5fb9d809e4be4e5fff2c3b1ca66c1ea9 (diff)
downloadchat-99d79eee56a1b5a27f18fffd90545b4aef191bba.tar.gz
chat-99d79eee56a1b5a27f18fffd90545b4aef191bba.tar.bz2
chat-99d79eee56a1b5a27f18fffd90545b4aef191bba.zip
add helper method to add ephemeral messages; also switch 'delete message' to this new method
Diffstat (limited to 'web/react/utils/utils.jsx')
-rw-r--r--web/react/utils/utils.jsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index c2e4276b0..13c7f961a 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -1254,3 +1254,8 @@ export function isFeatureEnabled(feature) {
export function isSystemMessage(post) {
return post.type && (post.type.lastIndexOf(Constants.SYSTEM_MESSAGE_PREFIX) === 0);
}
+
+// convenience method to dispatch an event in JS' next event cycle
+export function defer(fn) {
+ setTimeout(fn, 0);
+}