Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of taxonomy_vtn module.
| 1 | // hide descriptions |
| 2 | |
| 3 | function taxonomy_vtn_show_hide_desc(what){ |
| 4 | if( document.getElementById('taxonomy_vtn_'+what)){ |
| 5 | var table = document.getElementById('taxonomy_vtn_'+what); |
| 6 | var spany = table.getElementsByTagName('SPAN'); |
| 7 | |
| 8 | for(i=0;i<spany.length;i++){ |
| 9 | if (spany[i].className == 'description'){ |
| 10 | if (spany[i].style.display == ''){ |
| 11 | spany[i].style.display = 'none'; |
| 12 | } |
| 13 | else { |
| 14 | spany[i].style.display = ''; |
| 15 | } |
| 16 | } |
| 17 | } |
| 18 | } |
| 19 | } |
| 20 |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |