Commit 535bcf2d by Ha Jonguk

英文小文字だけでコンテンツ名を指定する場合、"..."がみえない不具合の対応

parent 83f6eaec
...@@ -3335,10 +3335,16 @@ COMMON.fixTitleToDottedLine = function(titleEle, fontSize, height) { ...@@ -3335,10 +3335,16 @@ COMMON.fixTitleToDottedLine = function(titleEle, fontSize, height) {
// 一旦追加 // 一旦追加
titleEle.after(cloneEle); titleEle.after(cloneEle);
var fixed = false;
// 指定した高さになるまで、1文字ずつ消去していく // 指定した高さになるまで、1文字ずつ消去していく
while((html.length > 0) && (cloneEle.height() > titleEle.height())) { while((html.length > 0) && (cloneEle.height() > titleEle.height())) {
html = html.substr(0, html.length - 1); html = html.substr(0, html.length - 1);
cloneEle.html(html + '...'); cloneEle.html(html + '......');
fixed = true;
}
// 小文字のみの場合、3点リーダーが表示みえない場合があるため対応
if (fixed) {
cloneEle.html(cloneEle.html().slice(0, -3));
} }
// 文章を入れ替えて、複製した要素を削除する // 文章を入れ替えて、複製した要素を削除する
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment