/[drupal]/drupal/modules/path/path.js
ViewVC logotype

Contents of /drupal/modules/path/path.js

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


Revision 1.3 - (show annotations) (download) (as text)
Tue Oct 20 01:24:34 2009 UTC (5 weeks, 3 days ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-10, HEAD
Changes since 1.2: +2 -2 lines
File MIME type: text/javascript
- Patch #332333 by sun: more fixes for the path API.
1 // $Id: path.js,v 1.2 2009/04/27 20:19:37 webchick Exp $
2
3 (function ($) {
4
5 Drupal.behaviors.pathFieldsetSummaries = {
6 attach: function (context) {
7 $('fieldset#edit-path', context).setSummary(function (context) {
8 var path = $('#edit-path-alias').val();
9
10 return path ?
11 Drupal.t('Alias: @alias', { '@alias': path }) :
12 Drupal.t('No alias');
13 });
14 }
15 };
16
17 })(jQuery);

  ViewVC Help
Powered by ViewVC 1.1.2