You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
597 B
21 lines
597 B
<html> |
|
<head> |
|
<script type="text/javascript" src="../../../dojo.js" data-dojo-config="isDebug:1, async:1, trace:{'loader-run-factory':1}"></script> |
|
<script type="text/javascript"> |
|
dojo.ready(function(){ |
|
console.log("in ready"); |
|
require.trace.set("loader-run-factory", 0); |
|
require.trace.set("loader-define", 1); |
|
require(["doh"], function(){ |
|
console.log("done loading DOH; turn tracing all off"); |
|
require.trace.set({"loader-define":0}); |
|
require(["dijit"], function(){ |
|
console.log("done loading dijit"); |
|
}); |
|
}); |
|
}); |
|
</script> |
|
</head> |
|
<body> |
|
</body> |
|
</html>
|
|
|