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.
27 lines (26 loc) • 615 B
HTML
<html>
<head>
<title>require.js</title>
<script type="text/javascript">
requirejsArgs = {
dojoLocation: '../../../../../..'
};
</script>
<script type="text/javascript" src="../requirejs-setup.js"></script>
<script>
dojoConfig.map = {
'testing/i18n': {
'testing': 'dojo'
},
'*': {
'dojo/i18n': 'testing/i18n'
}
};
</script>
<script type="text/javascript" src="../../../../../../dojo.js"></script>
</head>
<body>
<h1>require.js</h1>
</body>
</html>