Per this switch statement:

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;
}

it would seem that the minified and packed jQuery UI files are expected to be located at minified/ and packed/, respectively. However, the Development Bundle from the official jQuery UI site no longer contains these files - only one large minified file (which, incidentally, is not under the development-bundle directory, but rather located at js/jquery-ui-1.7.1.custom.min.js).

Am I missing something, or did the jQuery UI download format change?

Thanks! :)
-Rich

Comments

rinogo’s picture

Note that given the absence of these files, this module will not work when using the compressed (mini/packed) options.

robloach’s picture

Status: Active » Closed (duplicate)
rinogo’s picture

Status: Closed (duplicate) » Closed (fixed)

Thanks, Rob.

Long story short for others who hit this: Avoid jqueryui.com and instead download from

http://jquery-ui.googlecode.com/

I'm using 1.7.1:

http://jquery-ui.googlecode.com/files/jquery-ui-1.7.1.zip

Looks like that documentation patch should do the trick. Thanks for your work on this, Rob.