I'd like to use Google's hosted version of YUI (since Yahoo's doesn't support SSL). I'm using YUILoader:
var loader = new YAHOO.util.YUILoader({
require: ["autocomplete"],
onSuccess: function() { ac_ready = true; setup_manager_autocomp() },
combine: true
});
I'm loading yuiloader from Google's CDN:
<script src="https://ajax.googleapis.com/ajax/libs/yui/2.8.1/build/yuiloader/yuiloader-min.js"></script>
But the request YUILoader makes goes to Yahoo instead of googleapis.com . Apparently I need to set "base" and "comboBase", ala:
comboBase: 'http://yui.yahooapis.com/combo?',
except set to googleapis instead of yahooapis.
I can't quite figure out what comboBase should be when using googleapis. Anybody know the magic incantation?