Mercurial > defr > drupal > scald > mee
diff mee.module @ 12:da5d54d099b1
Fix the drag'n'drop, add a caption to the ressource manager.
tableDrag makeDraggable method expect a standard DOM object, not the jQuery
wrapper.
| author | Franck Deroche <franck@defr.org> |
|---|---|
| date | Fri, 05 Jun 2009 09:56:08 +0200 |
| parents | 272628486e75 |
| children | 842d89897cb4 |
line wrap: on
line diff
--- a/mee.module Thu Jun 04 12:59:55 2009 +0200 +++ b/mee.module Fri Jun 05 09:56:08 2009 +0200 @@ -447,7 +447,9 @@ $output = theme('table', $header, $rows, array( 'id' => $id, 'class' => 'mee-ressource-manager' - )); + ), + t('Ressource Manager') + ); $output .= drupal_render($form); return $output; }
