Just updated to 7.x-4.0-alpha2 and after setting jQuery version to use Google CDN jquery-ui returns error 404
The link it was passing to get jquery-ui is being merged with the version number missing the / in the url like:
//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2jquery-ui.min.js
When it should be:
//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js
The / between the version number and jquery-ui.min.js is missing!
So I created a patch which addresses this simple fix in the jquery_update.module file, which I will add shortly..
Comments
Comment #2
sidgrafix commentedAnd the patch...
Comment #4
mcdruid commentedThank you!