summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/tools/clang/www/analyzer/scripts/menu.js
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2010-06-09 18:11:12 +0000
committered <ed@FreeBSD.org>2010-06-09 18:11:12 +0000
commita1185afe0f653cca036f117b540fefc6f799e95d (patch)
tree8b9786210f005ec3c3b7b19ee52714d390c2b121 /contrib/llvm/tools/clang/www/analyzer/scripts/menu.js
parent92026fed219b8457b0b6d9ed33a538b105a670cc (diff)
downloadFreeBSD-src-a1185afe0f653cca036f117b540fefc6f799e95d.zip
FreeBSD-src-a1185afe0f653cca036f117b540fefc6f799e95d.tar.gz
Remove unneeded directories.
Even though Roman removed these directories in his working copy, they weren't removed from the actual repository, also causing his working copy to be corrupted.
Diffstat (limited to 'contrib/llvm/tools/clang/www/analyzer/scripts/menu.js')
-rw-r--r--contrib/llvm/tools/clang/www/analyzer/scripts/menu.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/contrib/llvm/tools/clang/www/analyzer/scripts/menu.js b/contrib/llvm/tools/clang/www/analyzer/scripts/menu.js
deleted file mode 100644
index 6b393c0..0000000
--- a/contrib/llvm/tools/clang/www/analyzer/scripts/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;
OpenPOWER on IntegriCloud