source: themes/default_ajax/inc/hfunc.js@ 686303f

Last change on this file since 686303f was e11e175, checked in by Gabor Hudiczius <cyla@jmk.hu>, 9 years ago

rtwi-070821

  • Property mode set to 100644
File size: 434 bytes
RevLine 
[e11e175]1function toggle( modpage ) {
2 switch ( modpage ) {
3 case 'addtorrent_info' : {
4 document.getElementById( 'torrenturl' ).style.display = 'none';
5 break;
6 }
7 case 'torrent_files' : {
8 var uls = document.getElementsByTagName( 'ul' );
9 for ( i = 0; i < uls.length; i++ ) {
10 if ( uls.item( i ).getAttribute( 'class' ) == 'directory' ) {
11 uls.item( i ).style.display='none';
12 }
13 }
14 break;
15 }
16 }
17}
Note: See TracBrowser for help on using the repository browser.