diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-06-20 17:34:51 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-06-20 17:34:51 +0000 |
commit | f174e9cc55679f9a1d3cba390fefb1a7dcc19b40 (patch) | |
tree | b1e4613908180c951f60f03d9fdc635ba8f67525 /includes | |
parent | 453fab02bf7df0fde79a7e1e8b20bb18eb2b7897 (diff) | |
download | brdo-f174e9cc55679f9a1d3cba390fefb1a7dcc19b40.tar.gz brdo-f174e9cc55679f9a1d3cba390fefb1a7dcc19b40.tar.bz2 |
#448292 by Frank Ralf, David_Rothstein, mgifford, Everett Zufelt, Bojhan, mohammed76, et al: Fixed Drag and Drop for table rows is not accessible to screen-reader users.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/common.inc b/includes/common.inc index 89266d26c..639861cd9 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -4277,6 +4277,7 @@ function drupal_add_tabledrag($table_id, $action, $relationship, $group, $subgro // Add the table drag JavaScript to the page before the module JavaScript // to ensure that table drag behaviors are registered before any module // uses it. + drupal_add_js('misc/jquery.cookie.js', array('weight' => JS_DEFAULT - 2)); drupal_add_js('misc/tabledrag.js', array('weight' => JS_DEFAULT - 1)); $js_added = TRUE; } |