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.
34 lines (31 loc) • 871 B
HTML
<html>
<head>
<!--
NOTE: this test is exactly the same as config-sniff except the attribute is renamed to djConfig
-->
<title>config sniff djConfig</title>
<script type="text/javascript">
var ready = 0;
var dojoConfig = {
async: 1,
waitSeconds: 5,
packages: [
{ name: 'dojo', location: 'node_modules/dojo' }
],
callback: function () {
ready = 1;
}
};
</script>
<script
type="text/javascript"
src="../../../../dojo.js"
djConfig="isDebug: 1, async: 1, waitSeconds: 6, baseUrl:'../../../..',
cats: 'dojo-config-dogs', a: 2, b: [ 3, 4, 5 ]">
</script>
</head>
<body>
<h1>config sniff djConfig</h1>
</body>
</html>