UNPKG

dojo

Version:

Dojo core is a powerful, lightweight library that makes common tasks quicker and easier. Animate elements, manipulate the DOM, and query with easy CSS syntax, all without sacrificing performance.

22 lines (21 loc) 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>