Parent Directory
|
Revision Log
|
Revision Graph
#289299 by ultimateboy: initial port to d6
| 1 | // $Id$ |
| 2 | |
| 3 | // Global Killswitch |
| 4 | if (Drupal.jsEnabled) { |
| 5 | $(document).ready(function() { |
| 6 | // Hide the other options if "Show message (sticky)" is not checked. |
| 7 | $("#admin-message-toggle")[['hide', 'show'][Number($("#edit-sticky")[0].checked)]](); |
| 8 | |
| 9 | $("#edit-sticky").click(function() { |
| 10 | $("#admin-message-toggle")[['hide', 'show'][Number(this.checked)]](); |
| 11 | }); |
| 12 | }); |
| 13 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |