Reviewers: arphaman
Subscribers: cfe-commits
Differential Revision: https://reviews.llvm.org/D37072
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@311575
91177308-0d34-0410-b5e6-
96231b3b80d8
function clearHighlight() {
while (highlightStack.length) {
var [l, r] = highlightStack.pop()
- document.getElementById(l).style.backgroundColor = 'white'
+ document.getElementById(l).style.backgroundColor = 'inherit'
if (r[1] != '-')
- document.getElementById(r).style.backgroundColor = 'white'
+ document.getElementById(r).style.backgroundColor = 'inherit'
}
}
function highlight(event) {