Forum Discussion
_anomDiebolt_
7 years agoQrew Elite
I just noticed there was a small typo in the requirejs code (errant semicolon) I posted. Here is a version of that code that clears the typo and loads d3 and kendo-ui-core using requirejs and then logs the d3 and kendo objects along with all the requirejs loaded modules:
require.config({
paths: {
"d3": "https://cdnjs.cloudflare.com/ajax/libs/d3/4.9.1/d3",
"kendo": "https://cdnjs.cloudflare.com/ajax/libs/kendo-ui-core/2014.1.416/js/kendo.core.min"
}
});
require(['d3', 'kendo'], function(d3, kendo) {
console.dir(d3);
console.dir(kendo);
console.dir(requirejs.s.contexts._.config );
});
SpencerHilvitz
7 years agoQrew Trainee
Thank you so much for getting back to me so quickly! I had been trying to get this to work and I'm still having issues with the requirejs implementation. I have the following code and I am getting back undefined for the console.dir(). Sorry about all of the extra quotations, I am having to do the iol technique and use the rich text field syntax.