diff --git a/chrome/content/zotero/xpcom/utilities.js b/chrome/content/zotero/xpcom/utilities.js index 1a1dc0c49..8c985a382 100644 --- a/chrome/content/zotero/xpcom/utilities.js +++ b/chrome/content/zotero/xpcom/utilities.js @@ -462,7 +462,7 @@ Zotero.Utilities = { throw ("Length not specified in Zotero.Utilities.ellipsize()"); } if (str.length > len) { - return str.substr(0, len) + '…' + (countChars ? ' (' + str.length + ' chars)' : ''); + return str.substr(0, len) + '\u2026' + (countChars ? ' (' + str.length + ' chars)' : ''); } return str; },