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 (20 loc) • 553 B
HTML
<html>
<head>
<title>modules</title>
<script>
var dojoConfig = {
async: 1,
baseUrl: './foo',
packages: [
{ name: 'testing', location: '../../../../../' },
{ name: 'dojo', location: '../../../../../node_modules/dojo' },
]
};
</script>
<script type="text/javascript" src="../../../../dojo.js"></script>
</head>
<body>
<h1>modules</h1>
</body>
</html>