[libc] Deprecate LLVM_ENABLE_PROJECTS in favor of LLVM_ENABLE_RUNTIMES. (#117265)
[llvm-project.git] / clang / www / analyzer / scripts / menu.js
blob6b393c081c8563b564b8a8ae799792472a59ca85
1 startList = function() {
2   if (document.all&&document.getElementById) {
3     navRoot = document.getElementById("nav");
4     for (i=0; i<navRoot.childNodes.length; i++) {
5       node = navRoot.childNodes[i];
6       if (node.nodeName=="LI") {
7         node.onmouseover=function() {
8           this.className+=" over";
9         }
10         node.onmouseout=function() {
11           this.className=this.className.replace(" over", "");
12         }
13       }
14     }
15   }
17 window.onload=startList;