Archived
1
0
This commit is contained in:
Jeff
2016-05-03 14:37:23 -04:00
parent f6f84f25c8
commit 2415c10029
2 changed files with 2 additions and 2 deletions

View File

@@ -158,7 +158,7 @@ DynReply.prototype.translate = function(dx, dy) {
}
DynReply.prototype.moveTo = function(x,y) {
console.log("moveto",x,y);
console.log("moveto",this, x,y);
if(x && y && x > 0 && y > 0) {
var nx = document.body.clientLeft - x ;
if (nx > 0 && y > 0 && nx < document.body.clientWidth && y < document.body.clientHeight ) {