UNPKG

can

Version:

MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.

24 lines (22 loc) 432 B
<html> <head> <script> function userConfigCallback(){ console.log("honored user config callback"); try{ require("dojo/AdapterRegistry"); console.log("honored user config"); }catch(e){ console.log("DID NOT honor user config"); } } var require = { deps:["dojo/AdapterRegistry"], callback:userConfigCallback }; </script> <script src="../../../dojo.js"></script> </head> <body> </body> </html>