Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of ignore_user module.
| 1 | // $Id$ |
| 2 | |
| 3 | if (Drupal.jsEnabled) { |
| 4 | $(document).ready(function () { |
| 5 | $('div.ignore-user-container > div').hide(); |
| 6 | $('div.ignore-user-container > a.ignore-user-content-link').click(function() { |
| 7 | $(this).next('div').slideToggle('fast'); |
| 8 | return false; |
| 9 | }); |
| 10 | }); |
| 11 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |