aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm/tools/clang/www/analyzer/menu.js
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/tools/clang/www/analyzer/menu.js')
-rw-r--r--contrib/llvm/tools/clang/www/analyzer/menu.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/contrib/llvm/tools/clang/www/analyzer/menu.js b/contrib/llvm/tools/clang/www/analyzer/menu.js
deleted file mode 100644
index 6b393c081c85..000000000000
--- a/contrib/llvm/tools/clang/www/analyzer/menu.js
+++ /dev/null
@@ -1,17 +0,0 @@
-startList = function() {
- if (document.all&&document.getElementById) {
- navRoot = document.getElementById("nav");
- for (i=0; i<navRoot.childNodes.length; i++) {
- node = navRoot.childNodes[i];
- if (node.nodeName=="LI") {
- node.onmouseover=function() {
- this.className+=" over";
- }
- node.onmouseout=function() {
- this.className=this.className.replace(" over", "");
- }
- }
- }
- }
-}
-window.onload=startList;