Files
konva/test-old/html/filterTests.html

27 lines
773 B
HTML
Raw Normal View History

<!DOCTYPE HTML>
<html>
<head>
<style>
/* overwrite CSS */
</style>
<link rel="stylesheet" type="text/css"href="../base.css">
2013-08-11 22:02:49 -07:00
<script src="../../dist/kinetic-dev.js"></script>
<script src="../assets/dataUrls.js"></script>
<script src="../js/Test.js"></script>
<script src="../js/filterTests.js"></script>
<script>
window.onload = function() {
var test = new Test();
test.run();
document.getElementsByTagName('body')[0].addEventListener('mousemove', function(evt) {
//console.log(evt.clientX + ',' + evt.clientY);
}, false);
};
</script>
</head>
<body></body>
</html>