Archived
1
0

try to fix movement of reply box

This commit is contained in:
Jeff Becker
2016-04-30 15:06:12 -04:00
parent 0a4a3b4f8a
commit 3a26c3e38e
2 changed files with 2 additions and 3 deletions

View File

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