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

Contents of /contributions/modules/page_title/page_title.js

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


Revision 1.2 - (show annotations) (download) (as text)
Thu Oct 29 18:11:19 2009 UTC (4 weeks, 2 days ago) by njt1982
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-7--2, DRUPAL-7--1
Changes since 1.1: +3 -1 lines
File MIME type: text/javascript
Work on improving compatibility with Drupal 7
1 // $Id$
2
3 (function ($) {
4
5 Drupal.behaviors.pageTitleFieldsetSummaries = {
6 attach: function (context) {
7 $('fieldset#edit-page-title', context).setSummary(function (context) {
8 var pt = $('input', context).val();
9
10 return pt ?
11 Drupal.t('Page Title: @pt', { '@pt': pt }) :
12 Drupal.t('No Page Title');
13 });
14 }
15 };
16
17 })(jQuery);
18

  ViewVC Help
Powered by ViewVC 1.1.2