diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-12-21 21:00:17 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-12-21 21:00:17 +0000 |
commit | ca89559273d37e0f8da1cbfce6e649ce27caf54f (patch) | |
tree | 9bf39465088cc9cad403ba29f08cc87f4f7e8d03 /modules/system | |
parent | 0e78333485da11ff44b3663d48d39df01f49513a (diff) | |
download | brdo-ca89559273d37e0f8da1cbfce6e649ce27caf54f.tar.gz brdo-ca89559273d37e0f8da1cbfce6e649ce27caf54f.tar.bz2 |
#954804 follow-up by effulgentsia: Fix bugs related to library weighting.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index c58297db9..d6d822a82 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1097,7 +1097,7 @@ function system_library() { 'title' => 'Drupal batch API', 'version' => VERSION, 'js' => array( - 'misc/batch.js' => array('cache' => FALSE), + 'misc/batch.js' => array('group' => JS_DEFAULT, 'cache' => FALSE), ), 'dependencies' => array( array('system', 'drupal.progress'), @@ -1109,7 +1109,7 @@ function system_library() { 'title' => 'Drupal progress indicator', 'version' => VERSION, 'js' => array( - 'misc/progress.js' => array('cache' => FALSE), + 'misc/progress.js' => array('group' => JS_DEFAULT, 'cache' => FALSE), ), ); @@ -1136,7 +1136,7 @@ function system_library() { 'title' => 'Drupal collapsible fieldset', 'version' => VERSION, 'js' => array( - 'misc/collapse.js' => array(), + 'misc/collapse.js' => array('group' => JS_DEFAULT), ), 'dependencies' => array( // collapse.js relies on drupalGetSummary in form.js @@ -1149,7 +1149,7 @@ function system_library() { 'title' => 'Drupal resizable textarea', 'version' => VERSION, 'js' => array( - 'misc/textarea.js' => array(), + 'misc/textarea.js' => array('group' => JS_DEFAULT), ), ); @@ -1158,7 +1158,7 @@ function system_library() { 'title' => 'Drupal autocomplete', 'version' => VERSION, 'js' => array( - 'misc/autocomplete.js' => array(), + 'misc/autocomplete.js' => array('group' => JS_DEFAULT), ), ); |