提交 e444f5bd 编写于 作者: M mindless

[FIXED HUDSON-7041] workaround to make ant-target links work in IE8


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@33176 71c3de6d-444a-0410-be80-ed276b4c234a
上级 197ef8ce
......@@ -29,9 +29,13 @@
var id = "ant-target-"+(iota++);
outline.appendChild(parseHtml("<li><a href='#"+id+"'>"+e.innerHTML+"</a></li>"))
var a = document.createElement("a");
a.setAttribute("name",id);
e.appendChild(a);
if (document.all)
e.innerHTML += '<a name="' + id + '"/>'; // IE8 loses "name" attr in appendChild
else {
var a = document.createElement("a");
a.setAttribute("name",id);
e.appendChild(a);
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册