I am getting used to the dojo toolkit. So my question is does the following code mean to load the base dojo code?
var djConfig = {
baseScriptUri: "js/dojo/"
};
Would I use the following code if I am using a CDN?
var djConfig = {
baseScriptUri: "http://o.aolcdn.com/dojo/"
};
or would I write the code this way?
var djConfig = {
baseScriptUri: "http://o.aolcdn.com/dojo/1.3.2/dojo/"
};
I am looking at a lot of dojo toolkit examples from the following website and they all have this code:
http://www.java2s.com/Tutorial/JavaScript/0570_Dojo-toolkit/Catalog0570_Dojo-toolkit.htm