shorten_expanded: also hide embedded attachments behind wrapper

This commit is contained in:
Andrew Dolgov 2018-09-21 08:14:55 +03:00
parent 1cf69d435d
commit df0115fc7a
1 changed files with 11 additions and 7 deletions

View File

@ -30,15 +30,19 @@ require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
window.setTimeout(function() {
if (row) {
if (row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
var content = row.select(".cdmContentInner")[0];
var c_inner = row.select(".cdmContentInner")[0];
var c_inter = row.select(".cdmIntermediate")[0];
if (content) {
content.innerHTML = "<div class='contentSizeWrapper'>" +
content.innerHTML + "</div><button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' "+
"href='#'>" + __("Click to expand article") + "</button>";
if (c_inner && c_inter &&
row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
}
c_inter.parentNode.removeChild(c_inter);
c_inner.innerHTML = "<div class='contentSizeWrapper'>" +
c_inner.innerHTML +
c_inter.innerHTML + "</div>" +
"<button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' href='#'>" +
__("Click to expand article") + "</button>";
}
}
}, 150);