Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/eclipseDownloadPage.js')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/eclipseDownloadPage.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/eclipseDownloadPage.js b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/eclipseDownloadPage.js
deleted file mode 100644
index 7a04dbc96..000000000
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/eclipseDownloadPage.js
+++ /dev/null
@@ -1,17 +0,0 @@
-
- sfHover = function() {
- var sfEls = document.getElementById("leftnav").getElementsByTagName(
- "li");
- for (var i = 0; i < sfEls.length; i++) {
- sfEls[i].onmouseover = function() {
- this.className += " sfhover";
- }
- sfEls[i].onmouseout = function() {
- this.className = this.className.replace(new RegExp(
- " sfhover\\b"), "");
- }
- }
- }
- if (window.attachEvent)
- window.attachEvent("onload", sfHover);
-

Back to the top