Archived
1
0
This commit is contained in:
Jeff Becker
2016-04-30 14:52:56 -04:00
parent 7527e4c978
commit b03b18b05f
2 changed files with 2 additions and 4 deletions

View File

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