leapjs
Version:
JavaScript client for the Leap Motion Controller
32 lines (31 loc) • 1.15 kB
HTML
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../../node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="../../node_modules/underscore/underscore.js"></script>
<script src="../../node_modules/mocha/mocha.js"></script>
<script src="../../node_modules/chai/chai.js"></script>
<script>
mocha.setup({ ui: 'bdd', globals: ['top', '__flash_getTopLocation', '__flash_getWindowLocation'], reporter: 'html' });
assert = chai.assert;
</script>
<script src="../assertUtil.js"></script>
<script src="../../leap.js"></script>
<script src="./common.js"></script>
<script src="../connection.js"></script>
<script src="../controller.js"></script>
<script src="../circular_buffer.js"></script>
<script src="../frame.js"></script>
<script src="../hand.js"></script>
<script src="../gestures.js"></script>
<script src="../interaction_box.js"></script>
<script src="../pointable.js"></script>
<script>
if (window.mochaPhantomJS) { mochaPhantomJS.run(); }
else { mocha.run(); }
</script>
</body>
</html>