Parent Directory
|
Revision Log
|
Revision Graph
* Fix up loading and editing of access
| 1 | // $Id$ |
| 2 | |
| 3 | (function ($) { |
| 4 | |
| 5 | Drupal.behaviors.saFieldsetSummaries = { |
| 6 | attach: function (context) { |
| 7 | if (!$('#edit-sa .form-checkbox:checked').size()) { |
| 8 | return Drupal.t('Public access'); |
| 9 | } |
| 10 | else { |
| 11 | return Drupal.t('Restricted access'); |
| 12 | } |
| 13 | } |
| 14 | }; |
| 15 | |
| 16 | })(jQuery); |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |