Archived
1
0
This commit is contained in:
Jeff
2016-05-03 13:57:48 -04:00
parent b2d0bfea8c
commit 7b8d229b64
2 changed files with 2 additions and 2 deletions

View File

@@ -384,7 +384,7 @@ function init(prefix) {
e.addEventListener("dragend", function(ev) {
var dx = ev.clientX - mouseDownX;
var dy = ev.clientY - mouseDownY;
console(dx, dy);
console.log(dx, dy);
rpl.translate(dx, dy);
}, false);