Archived
1
0
This commit is contained in:
Jeff Becker
2016-04-30 15:07:07 -04:00
parent 3a26c3e38e
commit 940ac4dec0
2 changed files with 2 additions and 2 deletions

View File

@@ -279,7 +279,7 @@ function init(prefix) {
e.addEventListener("dragend", function(ev) {
var x = originalX + ev.clientX - mouseDownX;
var y = originalY + ev.clientY - mouseDownY;
rpl.moveTo(window.screenLeft - x, y);
rpl.moveTo(x, y);
originalX = x;
originalY = y;
}, false);