summaryrefslogtreecommitdiffstats
path: root/web/react/utils
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-18 11:55:57 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-18 11:55:57 -0400
commit78c4bff0c179a952920d167378234bff847682fc (patch)
treef6f6747873d9aef1e955de764339ca0bfd9f0eeb /web/react/utils
parent72b743efa5e071db4fba818ef09549183c7fc05e (diff)
parent7ce0bf8f6cc0c77962311f26b3d496a5b502ba2c (diff)
downloadchat-78c4bff0c179a952920d167378234bff847682fc.tar.gz
chat-78c4bff0c179a952920d167378234bff847682fc.tar.bz2
chat-78c4bff0c179a952920d167378234bff847682fc.zip
Merge pull request #375 from nickago/MM-1777
MM-1777 Formatted comments' time in RHS similar to root
Diffstat (limited to 'web/react/utils')
-rw-r--r--web/react/utils/utils.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index 32793809d..3f7d204e4 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -192,6 +192,10 @@ module.exports.displayDateTime = function(ticks) {
}
+module.exports.displayCommentDateTime = function(ticks) {
+ return module.exports.displayDate(ticks) + ' ' + module.exports.displayTime(ticks);
+}
+
// returns Unix timestamp in milliseconds
module.exports.getTimestamp = function() {
return Date.now();