提交 77a5d9e6 authored 作者: Thomas Mueller's avatar Thomas Mueller

Bugfix for the ErrorAnalyzer

上级 b8238749
......@@ -40,7 +40,12 @@ function openLink() {
}
var ref = page.substr(pos);
link = decodeURIComponent(ref);
el = document.getElementById(link).parentNode.parentNode;
el = document.getElementById(link);
if (el.nodeName.toLowerCase() == 'h4') {
// constant
return true;
}
el = el.parentNode.parentNode;
on(el.id);
window.scrollTo(0, el.offsetTop);
return true;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论