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

View File

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