Archived
1
0
This commit is contained in:
Jeff
2016-05-03 13:08:07 -04:00
parent df4b263f39
commit f94491e38d
2 changed files with 4 additions and 3 deletions

View File

@@ -139,8 +139,9 @@ function DynReply(existingElem) {
}
DynReply.prototype.moveTo = function(x,y) {
x = window.screenX - x ;
this.elem.setAttribute("style", "top: "+y+"px; right: "+x+"px;");
x = window.screenLeft - x ;
y = window.screenTop - y;
this.elem.setAttribute("style", "bottom: "+y+"px; right: "+x+"px;");
}
DynReply.prototype.update = function() {