If log4javascript.js and dojo.js are loaded in the same web page, even the most basic dojo statement will fail with a "multipleDefine" error. For example: require(["dojo/dom"], function(dom){ });
I assume this is on the latest version?
correct, this is the latest version
I can't replicate this with a simple example. The following HTML works as expected (i.e. "DOM!" appears with no error in the console):
<!DOCTYPE html> <html> <head></head> <body> <script src="//ajax.googleapis.com/ajax/libs/dojo/1.10.1/dojo/dojo.js"></script> <script src="log4javascript.js"></script> <script> require(["dojo/dom"], function(dom){ console.log("DOM!") }); </script> </body> </html>
Log in to post a comment.
I assume this is on the latest version?
correct, this is the latest version
I can't replicate this with a simple example. The following HTML works as expected (i.e. "DOM!" appears with no error in the console):