summaryrefslogtreecommitdiff
path: root/modules/upload/upload.js
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-12-06 00:27:40 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-12-06 00:27:40 +0000
commit882fa0ab33cec0aaa9ebe942cbfe759fcf8f4a4e (patch)
tree5364772baa2f9851876bff7f04437bae0fec8123 /modules/upload/upload.js
parentbb460ee72782448df391e00b881beca3e5f254b5 (diff)
downloadbrdo-882fa0ab33cec0aaa9ebe942cbfe759fcf8f4a4e.tar.gz
brdo-882fa0ab33cec0aaa9ebe942cbfe759fcf8f4a4e.tar.bz2
#563000 by drewish, quicksketch, catch, and yched: DIE upload module, DIE! Long live File module! :D
Diffstat (limited to 'modules/upload/upload.js')
-rw-r--r--modules/upload/upload.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/upload/upload.js b/modules/upload/upload.js
deleted file mode 100644
index 1aae5d1b7..000000000
--- a/modules/upload/upload.js
+++ /dev/null
@@ -1,14 +0,0 @@
-// $Id$
-
-(function ($) {
-
-Drupal.behaviors.uploadFieldsetSummaries = {
- attach: function (context) {
- $('fieldset#edit-attachments', context).setSummary(function (context) {
- var size = $('#upload-attachments tbody tr').size();
- return Drupal.formatPlural(size, '1 attachment', '@count attachments');
- });
- }
-};
-
-})(jQuery);