fix floating title sometimes obscuring next article title
This commit is contained in:
parent
8043035b42
commit
301a09dc55
1 changed files with 2 additions and 2 deletions
|
@ -2230,7 +2230,6 @@ function scrollToRowId(id) {
|
||||||
function updateFloatingTitle() {
|
function updateFloatingTitle() {
|
||||||
try {
|
try {
|
||||||
var hf = $("headlines-frame");
|
var hf = $("headlines-frame");
|
||||||
var child = $("RROW-" + _active_article_id);
|
|
||||||
|
|
||||||
var elems = $$("#headlines-frame > div[id*=RROW]");
|
var elems = $$("#headlines-frame > div[id*=RROW]");
|
||||||
|
|
||||||
|
@ -2250,7 +2249,8 @@ function updateFloatingTitle() {
|
||||||
PluginHost.run(PluginHost.HOOK_FLOATING_TITLE, child);
|
PluginHost.run(PluginHost.HOOK_FLOATING_TITLE, child);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (child.offsetTop < hf.scrollTop - header.offsetHeight)
|
if (child.offsetTop < hf.scrollTop - header.offsetHeight &&
|
||||||
|
child.offsetTop + child.offsetHeight - hf.scrollTop > header.offsetHeight)
|
||||||
Element.show("floatingTitle");
|
Element.show("floatingTitle");
|
||||||
else
|
else
|
||||||
Element.hide("floatingTitle");
|
Element.hide("floatingTitle");
|
||||||
|
|
Loading…
Reference in a new issue