Commit ce9b40c5 by Ha Jonguk

IE対応+小文字のみの場合の対応追加

parent 535bcf2d
......@@ -3314,8 +3314,8 @@ COMMON.isAuthoringPreview = function() {
COMMON.fixTitleToDottedLine = function(titleEle, fontSize, height) {
// 表示用タイトルのスタイル設定
titleEle.css({
"white-space": "unset",
"text-overflow": "unset",
"white-space": "normal",
"text-overflow": "initial",
"overflow": "hidden",
"word-break": "break-all",
"height": height + "px",
......@@ -3339,12 +3339,12 @@ COMMON.fixTitleToDottedLine = function(titleEle, fontSize, height) {
// 指定した高さになるまで、1文字ずつ消去していく
while((html.length > 0) && (cloneEle.height() > titleEle.height())) {
html = html.substr(0, html.length - 1);
cloneEle.html(html + '......');
cloneEle.html(html + '...AA');
fixed = true;
}
// 小文字のみの場合、3点リーダーが表示みえない場合があるため対応
if (fixed) {
cloneEle.html(cloneEle.html().slice(0, -3));
cloneEle.html(cloneEle.html().slice(0, -2));
}
// 文章を入れ替えて、複製した要素を削除する
......
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