Archived
1
0

try fixing movement of reply box

This commit is contained in:
Jeff Becker
2016-04-30 15:04:53 -04:00
parent 02330805e9
commit 11f096e195
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;
x = x - screenLeft;
x = window.screenX - x;
rpl.moveTo(x, y);
originalX = x;
originalY = y;