experimental: limit initialized html content for expanded cdm
This commit is contained in:
parent
24c215e2bb
commit
b74c513428
2 changed files with 26 additions and 6 deletions
|
@ -624,14 +624,14 @@ class Feeds extends Handler_Protected {
|
|||
|
||||
$reply['content'] .= "<span id=\"CWRAP-$id\">";
|
||||
|
||||
if (!$expand_cdm) {
|
||||
$reply['content'] .= "<span id=\"CENCW-$id\">";
|
||||
// if (!$expand_cdm) {
|
||||
$reply['content'] .= "<span id=\"CENCW-$id\" style=\"display : none\">";
|
||||
$reply['content'] .= htmlspecialchars($line["content"]);
|
||||
$reply['content'] .= "</span.";
|
||||
|
||||
} else {
|
||||
$reply['content'] .= $line["content"];
|
||||
}
|
||||
// } else {
|
||||
// $reply['content'] .= $line["content"];
|
||||
// }
|
||||
|
||||
$reply['content'] .= "</span>";
|
||||
|
||||
|
|
|
@ -205,6 +205,8 @@ function headlines_callback2(transport, offset, background, infscroll_req) {
|
|||
|
||||
_infscroll_request_sent = 0;
|
||||
|
||||
headlines_scroll_handler($("headlines-frame"));
|
||||
|
||||
notify("");
|
||||
|
||||
} catch (e) {
|
||||
|
@ -1176,6 +1178,23 @@ function headlines_scroll_handler(e) {
|
|||
try {
|
||||
var hsp = $("headlines-spacer");
|
||||
|
||||
$$("#headlines-frame > div[id*=RROW]").each(
|
||||
function(child) {
|
||||
if (child.offsetTop <= $("headlines-frame").scrollTop +
|
||||
$("headlines-frame").offsetHeight) {
|
||||
|
||||
var cencw = $("CENCW-" + child.id.replace("RROW-", ""));
|
||||
|
||||
if (cencw) {
|
||||
cencw.innerHTML = htmlspecialchars_decode(cencw.innerHTML);
|
||||
cencw.setAttribute('id', '');
|
||||
Element.show(cencw);
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
if (!_infscroll_disable) {
|
||||
if ((hsp && e.scrollTop + e.offsetHeight >= hsp.offsetTop - hsp.offsetHeight) ||
|
||||
(e.scrollHeight != 0 &&
|
||||
|
@ -1197,7 +1216,7 @@ function headlines_scroll_handler(e) {
|
|||
|
||||
$$("#headlines-frame > div[id*=RROW][class*=Unread]").each(
|
||||
function(child) {
|
||||
if ($("headlines-frame").scrollTop >
|
||||
if (child.hasClassName("Unread") && $("headlines-frame").scrollTop >
|
||||
(child.offsetTop + child.offsetHeight/2)) {
|
||||
|
||||
var id = child.id.replace("RROW-", "");
|
||||
|
@ -1388,6 +1407,7 @@ function cdmExpandArticle(id) {
|
|||
if (cencw) {
|
||||
cencw.innerHTML = htmlspecialchars_decode(cencw.innerHTML);
|
||||
cencw.setAttribute('id', '');
|
||||
Element.show(cencw);
|
||||
}
|
||||
|
||||
Element.show(elem);
|
||||
|
|
Loading…
Reference in a new issue