/[drupal]/contributions/modules/simple_access/simple_access.js
ViewVC logotype

Contents of /contributions/modules/simple_access/simple_access.js

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Sun Oct 11 01:50:07 2009 UTC (6 weeks, 4 days ago) by gordon
Branch: MAIN
CVS Tags: DRUPAL-7--2-0-ALPHA1, HEAD
Changes since 1.2: +14 -8 lines
File MIME type: text/javascript
* 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