My dummy jquery.js is now this:
- if (window.jQuery) {
steal(function() {
return window.jQuery;
})
} else {
steal('../jquery.min.js', function() {
return $;
});
}
It works. Build and dev. The only weirdness is the extra 138 byte GET steal makes to this file to get window.jQuery.