dhxmvp
Version:
A complete boilerplate for building online, offline and syncable MVP Single Page Applications using DHTMLX.
24 lines (22 loc) • 897 B
HTML
<html>
<head>
<title>Mocha</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
</head>
<body>
<script src="../node_modules/should/should.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script>mocha.setup('bdd');</script>
<!-- deps -->
<script src='../deps/dhx/min.shim.js'></script>
<script src='../deps/dhx/min.dhx.js'></script>
<script src='../deps/dhx/dhx.ui.mvp.js'></script>
<!-- app -->
<link rel="stylesheet" type="text/css" href="../assets/css/app.css">
<script src="app.js" data-cover></script>
<script src="test.js"></script>
</body>
</html>