Archived
1
0

try fixing movement of reply window

This commit is contained in:
Jeff Becker
2016-04-30 15:03:54 -04:00
parent ed5be31c22
commit 02330805e9
2 changed files with 3 additions and 2 deletions

View File

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