Parent Directory
|
Revision Log
|
Revision Graph
Imported initial version of taxonomy explorer module.
| 1 | // $Id$ |
| 2 | |
| 3 | $(document).ready(function() { |
| 4 | $('div.explorer-folder').each(function() { |
| 5 | $(this).children('span.*').click(function() { |
| 6 | $(this.parentNode).toggleClass('expanded').children('div').toggle(); |
| 7 | }); |
| 8 | }); |
| 9 | }); |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |