зеркало из https://github.com/mozilla/snowl.git
fake ellipses until we can figure out how to insert them for real
This commit is contained in:
Родитель
e5cfebf44c
Коммит
2b064531ce
|
@ -158,7 +158,8 @@ SnowlMessage.prototype = {
|
||||||
let contentText = construct.plainText();
|
let contentText = construct.plainText();
|
||||||
|
|
||||||
// XXX Does an ellipsis need to be localizable?
|
// 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() {
|
get _getPartStatement() {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче