it turns out that there was only a problem with moveDown. refactored logic proposed by Adam

This commit is contained in:
Eric Rowell
2012-09-17 22:49:24 -07:00
parent 0bf3db0688
commit 01c2b28a6c
5 changed files with 64 additions and 33 deletions

View File

@@ -15,7 +15,7 @@
test.run();
document.getElementsByTagName('body')[0].addEventListener('mousemove', function(evt) {
console.log(evt.clientX + ',' + evt.clientY);
//console.log(evt.clientX + ',' + evt.clientY);
}, false);
};
</script>