cdm auto catchup: mark posts when scrolled above half their height
This commit is contained in:
parent
f7cffd2cfd
commit
e3642715df
|
@ -1321,7 +1321,7 @@ function headlines_scroll_handler(e) {
|
|||
$$("#headlines-frame > div[id*=RROW][class*=Unread]").each(
|
||||
function(child) {
|
||||
if ($("headlines-frame").scrollTop >
|
||||
(child.offsetTop + child.offsetHeight)) {
|
||||
(child.offsetTop + child.offsetHeight/2)) {
|
||||
|
||||
ids.push(child.id.replace("RROW-", ""));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue