shorten_expanded: also hide embedded attachments behind wrapper
This commit is contained in:
parent
1cf69d435d
commit
df0115fc7a
|
@ -30,15 +30,19 @@ require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
||||||
|
|
||||||
window.setTimeout(function() {
|
window.setTimeout(function() {
|
||||||
if (row) {
|
if (row) {
|
||||||
if (row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
|
var c_inner = row.select(".cdmContentInner")[0];
|
||||||
var content = row.select(".cdmContentInner")[0];
|
var c_inter = row.select(".cdmIntermediate")[0];
|
||||||
|
|
||||||
if (content) {
|
if (c_inner && c_inter &&
|
||||||
content.innerHTML = "<div class='contentSizeWrapper'>" +
|
row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
|
||||||
content.innerHTML + "</div><button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' "+
|
|
||||||
"href='#'>" + __("Click to expand article") + "</button>";
|
|
||||||
|
|
||||||
}
|
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);
|
}, 150);
|
||||||
|
|
Loading…
Reference in New Issue