| 1 |
// $Id$
|
| 2 |
if (Drupal.jsEnabled) {
|
| 3 |
$(document).ready(function() {
|
| 4 |
$("#edit-notify-type-1").bind("click", function() {
|
| 5 |
if ($("#edit-notify").attr("checked", false)) {
|
| 6 |
// Auto-notification not checked - do it for them.
|
| 7 |
$("#edit-notify").attr("checked",true);
|
| 8 |
}
|
| 9 |
});
|
| 10 |
$("#edit-notify-type-2").bind("click", function() {
|
| 11 |
if ($("#edit-notify").attr("checked", false)) {
|
| 12 |
// Auto-notification not checked - do it for them.
|
| 13 |
$("#edit-notify").attr("checked",true);
|
| 14 |
}
|
| 15 |
});
|
| 16 |
});
|
| 17 |
}
|