Line | |
---|
1 | <html> |
---|
2 | <head> |
---|
3 | <script type="text/javascript" src="../../../dojo.js" data-dojo-config="isDebug:1, async:1, trace:{'loader-run-factory':1}"></script> |
---|
4 | <script type="text/javascript"> |
---|
5 | dojo.ready(function(){ |
---|
6 | console.log("in ready"); |
---|
7 | require.trace.set("loader-run-factory", 0); |
---|
8 | require.trace.set("loader-define", 1); |
---|
9 | require(["doh"], function(){ |
---|
10 | console.log("done loading DOH; turn tracing all off"); |
---|
11 | require.trace.set({"loader-define":0}); |
---|
12 | require(["dijit"], function(){ |
---|
13 | console.log("done loading dijit"); |
---|
14 | }); |
---|
15 | }); |
---|
16 | }); |
---|
17 | </script> |
---|
18 | </head> |
---|
19 | <body> |
---|
20 | </body> |
---|
21 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.