dnet40/modules/dnet-openaireplus-schema/trunk/ontologies/doc/tree.js @ 32912
1 |
function showSubs(id){ |
---|---|
2 |
var subs = document.getElementById(id); |
3 |
if (subs != null){ |
4 |
if (subs.style.display == "none"){ |
5 |
subs.style.display = "block"; |
6 |
}
|
7 |
else{ |
8 |
subs.style.display = "none"; |
9 |
}
|
10 |
}
|
11 |
var subExpand = document.getElementById(id + "-expand"); |
12 |
if (subExpand != null){ |
13 |
if (subExpand.style.display == "none"){ |
14 |
subExpand.style.display = "inline"; |
15 |
}
|
16 |
else{ |
17 |
subExpand.style.display = "none"; |
18 |
}
|
19 |
}
|
20 |
}
|
- « Previous
- 1
- …
- 3
- 4
- 5
- Next »