Archived
1
0

use different method for moveto

This commit is contained in:
Jeff Becker
2016-04-30 14:56:22 -04:00
parent 2d9aac039c
commit d82f2e3732
2 changed files with 2 additions and 3 deletions

View File

@@ -124,8 +124,7 @@ function DynReply(existingElem) {
}
DynReply.prototype.moveTo = function(x,y) {
this.elem.style.top = y + "px";
this.elem.style.left = x + "px";
this.elem.setAttribute("style", "top: "+y+"px; left: "+x+"px");
}
DynReply.prototype.update = function() {