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.
37 lines (36 loc) • 727 B
HTML
<html>
<head lang="en">
<meta charset="UTF-8">
<title>standard functional test html</title>
<link rel="stylesheet" href="../../../resources/dojo.css">
</head>
<body>
<div id="container"></div>
<ul class="zork notdone">initial content</ul>
<ul class="zork notdone">initial content</ul>
<ul class="zork notdone">initial content</ul>
<table id='tableTest' class='box'>
<thead>
<tr>
<td></td>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
<tbody>
</table>
<script>
var dojoConfig = {
async: true,
isDebug: true,
packages: [
{ name: 'sinon', location: 'node_modules/sinon/pkg', main: 'sinon'}
]
}
</script>
<script src="../../../dojo.js"></script>
</body>
</html>