Index: CHANGELOG.txt =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/jquery_ui/CHANGELOG.txt,v retrieving revision 1.5.2.3 diff -u -p -r1.5.2.3 CHANGELOG.txt --- CHANGELOG.txt 7 Aug 2009 17:03:24 -0000 1.5.2.3 +++ CHANGELOG.txt 30 Oct 2009 16:33:09 -0000 @@ -7,6 +7,8 @@ jQuery UI x.x-x.x, xxxx-xx-xx jQuery UI 6.x-1.x, xxxx-xx-xx ----------------------------- #542908 by sun: Clarified installation instructions. +#578402 by mbutcher: Set path to not use minify by default, since minified + version is no longer present in jQuery UI downloads. jQuery UI 6.x-1.3, 2009-06-21 Index: jquery_ui.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/jquery_ui/jquery_ui.module,v retrieving revision 1.6.2.2 diff -u -p -r1.6.2.2 jquery_ui.module --- jquery_ui.module 21 Jun 2009 03:43:03 -0000 1.6.2.2 +++ jquery_ui.module 30 Oct 2009 16:33:09 -0000 @@ -37,7 +37,7 @@ else { function jquery_ui_add($files = array()) { static $loaded_files, $ui_core, $effects_core; $jquery_ui_path = JQUERY_UI_PATH . '/ui'; - $compression = variable_get('jquery_update_compression_type', 'mini'); + $compression = variable_get('jquery_update_compression_type', 'none'); // Convert file to an array if it's not one already, to compensate for // lazy developers. ;) @@ -62,18 +62,20 @@ function jquery_ui_add($files = array()) // Load other files. if (!isset($loaded_files[$file])) { switch ($compression) { - case 'none': - $file_path = "$file.js"; - break; case 'pack': $file_path = "packed/$file.packed.js"; break; case 'mini': - default: $file_path = "minified/$file.min.js"; break; + + case 'none': + default: + $file_path = "$file.js"; + break; + } $js_path = $jquery_ui_path . '/' . $file_path; drupal_add_js($js_path);