From: Andrew Dolgov Date: Fri, 21 Sep 2018 05:14:55 +0000 (+0300) Subject: shorten_expanded: also hide embedded attachments behind wrapper X-Git-Tag: 18.12~68 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=df0115fc7a443669f3326f5abb49eb9754b59263 shorten_expanded: also hide embedded attachments behind wrapper --- diff --git a/plugins/shorten_expanded/init.js b/plugins/shorten_expanded/init.js index ffec6271..24d72b0a 100644 --- a/plugins/shorten_expanded/init.js +++ b/plugins/shorten_expanded/init.js @@ -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 = "
" + - content.innerHTML + "
"; + if (c_inner && c_inter && + row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) { - } + c_inter.parentNode.removeChild(c_inter); + + c_inner.innerHTML = "
" + + c_inner.innerHTML + + c_inter.innerHTML + "
" + + ""; } } }, 150);