Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/monodoc/Resources/helper.js')
-rwxr-xr-xmcs/class/monodoc/Resources/helper.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/mcs/class/monodoc/Resources/helper.js b/mcs/class/monodoc/Resources/helper.js
deleted file mode 100755
index 2889c1b2165..00000000000
--- a/mcs/class/monodoc/Resources/helper.js
+++ /dev/null
@@ -1,12 +0,0 @@
-function toggle_display (block) {
- var w = document.getElementById (block);
- var t = document.getElementById (block + ":toggle");
- if (w.style.display == "none") {
- w.style.display = "block";
- t.getElementsByTagName("img")[0].setAttribute ("src", "xtree/images/clean/Lminus.gif"); // <img src="xtree/images/clean/Lminus.gif">
- } else {
- w.style.display = "none";
- t.getElementsByTagName("img")[0].setAttribute ("src", "xtree/images/clean/Lplus.gif"); // <img src="xtree/images/clean/Lplus.gif">
- }
-}
-