2009-04-11 22:19:46 +00:00
|
|
|
// $Id$
|
|
|
|
|
2009-04-27 20:19:38 +00:00
|
|
|
(function ($) {
|
2009-04-11 22:19:46 +00:00
|
|
|
|
2009-04-12 03:52:22 +00:00
|
|
|
Drupal.behaviors.uploadFieldsetSummaries = {
|
2009-04-27 20:19:38 +00:00
|
|
|
attach: function (context) {
|
|
|
|
$('fieldset#edit-attachments', context).setSummary(function (context) {
|
2009-04-11 22:19:46 +00:00
|
|
|
var size = $('#upload-attachments tbody tr').size();
|
|
|
|
return Drupal.formatPlural(size, '1 attachment', '@count attachments');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|