Reputation: 1314
I have a mobile application which is written with requirejs, backbone, and jQuery. It has suddenly come to my attention that a new third part library is required for our map technology. This map technology is built using Dojo which comes shipped with requirejs baked in.
Is there any simple way to run them both in parallel without conflicts?
Edit: The third party script is using a prebuilt version of application bundled with Dojo 1.9. I can not inject my application code into this as their built version has had the config injection stripped out.
Upvotes: 1
Views: 921
Reputation: 6828
It will not work with a prebuilt version of dojo. You need the source version : see Using requirejs with dojo 1.9.1. This might help as well : http://geonet.esri.com/thread/102952
Upvotes: 1