Archived
1
0
This commit is contained in:
Jeff Becker
2016-04-30 14:53:32 -04:00
parent b03b18b05f
commit 917b15156c
2 changed files with 2 additions and 5 deletions

View File

@@ -275,8 +275,6 @@ function init(prefix) {
e.addEventListener("dragstart", function(ev) {
mouseDownX = ev.clientX;
mouseDownY = ev.clientY;
ev.preventDefault();
}, false);
e.addEventListener("dragend", function(ev) {
@@ -285,7 +283,6 @@ function init(prefix) {
rpl.moveTo(x, y);
originalX = x;
originalY = y;
ev.preventDefault();
}, false);
}