Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using requirejs with dojo 1.9.1

Can anybody provide me with a simple example of how to use requirejs to load dojo modules?

The requirejs.org website indicates it is best to use the dojo loader until a ticket is resolved - but that ticket appears to be resolved and is now closed.

I am encountering errors such as described here (duplicated below) only now with dojo 1.9.1.

Error:

TypeError: _3.add is not a function _3.add("dom-addeventlistener",!!document.addEventListener);

(I have an existing backbone app that uses requirejs and am simply trying to integrate in dojo charting).

like image 207
dwhogg Avatar asked Feb 16 '23 00:02

dwhogg


1 Answers

You need to use the source/SDK version of the Dojo Toolkit. Built copies of AMD modules are not compatible between loaders.

like image 58
C Snover Avatar answered Feb 27 '23 14:02

C Snover