From 2b064531ced851713a55a08b14f0b5e69568d581 Mon Sep 17 00:00:00 2001 From: Myk Melez Date: Wed, 26 Nov 2008 21:20:18 -0800 Subject: [PATCH] fake ellipses until we can figure out how to insert them for real --- modules/message.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/message.js b/modules/message.js index 2d0d98b..90140fc 100644 --- a/modules/message.js +++ b/modules/message.js @@ -158,7 +158,8 @@ SnowlMessage.prototype = { let contentText = construct.plainText(); // XXX Does an ellipsis need to be localizable? - return contentText.substring(0, 140) + (contentText.length > 140 ? "…" : ""); + // FIXME: use a real ellipsis character (…, a.k.a. …). + return contentText.substring(0, 140) + (contentText.length > 140 ? "..." : ""); }, get _getPartStatement() {