fake ellipses until we can figure out how to insert them for real

This commit is contained in:
Myk Melez 2008-11-26 21:20:18 -08:00
Родитель e5cfebf44c
Коммит 2b064531ce
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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() {