? 426646-hook-dashboard.patch ? 432414-render-hook.patch ? d.patch ? dashboard-info.patch ? dashboard.patch Index: dashboard.admin.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/dashboard/dashboard.admin.inc,v retrieving revision 1.1 diff -u -p -r1.1 dashboard.admin.inc --- dashboard.admin.inc 10 Apr 2009 17:09:12 -0000 1.1 +++ dashboard.admin.inc 13 Apr 2009 18:05:40 -0000 @@ -1,6 +1,7 @@ $content, ); } + +/** + * Wrapper function to load Ctools and other dependencie. + */ +function dashboard_add_tools() { + drupal_add_css(drupal_get_path('module', 'dashboard') . '/dashboard.css'); + drupal_add_js(drupal_get_path('module', 'dashboard') . '/dashboard.js'); + dashboard_load_ctools(); +} Index: dashboard.page.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/dashboard/dashboard.page.inc,v retrieving revision 1.3 diff -u -p -r1.3 dashboard.page.inc --- dashboard.page.inc 12 Apr 2009 05:47:11 -0000 1.3 +++ dashboard.page.inc 13 Apr 2009 18:05:41 -0000 @@ -4,6 +4,7 @@ * Add the CSS and JS requirements for the page. */ function dashboard_add_ui($page = NULL) { + dashboard_add_tools(); jquery_ui_add(array('ui.sortable')); drupal_add_js(array( 'dashboardPage' => $page->path,