Archived
1
0
This commit is contained in:
Jeff 2016-05-03 14:23:45 -04:00
parent 7136b176ee
commit 43bb6e4c5c
2 changed files with 2 additions and 3 deletions

View File

@ -160,14 +160,13 @@ DynReply.prototype.translate = function(dx, dy) {
} }
DynReply.prototype.moveTo = function(x,y) { DynReply.prototype.moveTo = function(x,y) {
console.log(this); console.log("moveto",x,y);
if(x && y) { if(x && y) {
var nx = document.body.clientLeft - x ; var nx = document.body.clientLeft - x ;
if (nx > 0 && y > 0 && nx < document.body.clientWidth && y < document.body.clientHeight ) { if (nx > 0 && y > 0 && nx < document.body.clientWidth && y < document.body.clientHeight ) {
this.elem.setAttribute("style", "top: "+y+"px; right: "+nx+"px;"); this.elem.setAttribute("style", "top: "+y+"px; right: "+nx+"px;");
this.x = x; this.x = x;
this.y = y; this.y = y;
console.log(this, this.x, this.y);
} }
} else { } else {
console.log("!!", x, y); console.log("!!", x, y);

View File

@ -56,7 +56,7 @@ table.appendChild(tbody);this.form.appendChild(table);this.elem.appendChild(this
DynReply.prototype.getX=function(){return this.x;} DynReply.prototype.getX=function(){return this.x;}
DynReply.prototype.getY=function(){return this.y;} DynReply.prototype.getY=function(){return this.y;}
DynReply.prototype.translate=function(dx,dy){if(this.x&&this.y){var x=this.x+dx;var y=this.y+dy;this.moveTo(x,y);};} DynReply.prototype.translate=function(dx,dy){if(this.x&&this.y){var x=this.x+dx;var y=this.y+dy;this.moveTo(x,y);};}
DynReply.prototype.moveTo=function(x,y){console.log(this);if(x&&y){var nx=document.body.clientLeft-x;if(nx>0&&y>0&&nx<document.body.clientWidth&&y<document.body.clientHeight){this.elem.setAttribute("style","top: "+y+"px; right: "+nx+"px;");this.x=x;this.y=y;console.log(this,this.x,this.y);}}else{console.log("!!",x,y);}} DynReply.prototype.moveTo=function(x,y){console.log("moveto",x,y);if(x&&y){var nx=document.body.clientLeft-x;if(nx>0&&y>0&&nx<document.body.clientWidth&&y<document.body.clientHeight){this.elem.setAttribute("style","top: "+y+"px; right: "+nx+"px;");this.x=x;this.y=y;}}else{console.log("!!",x,y);}}
DynReply.prototype.update=function(){if(this.prefix){this.updateCaptcha();if(this.board&&this.roothash){var ref=document.getElementById("postform_reference");ref.setAttribute("value",this.roothash);this.url=this.prefix+"post/"+this.board+"?t=json";}}} DynReply.prototype.update=function(){if(this.prefix){this.updateCaptcha();if(this.board&&this.roothash){var ref=document.getElementById("postform_reference");ref.setAttribute("value",this.roothash);this.url=this.prefix+"post/"+this.board+"?t=json";}}}
DynReply.prototype.show=function(){console.log("show dynreply");this.update();this.elem.style.display='inline';} DynReply.prototype.show=function(){console.log("show dynreply");this.update();this.elem.style.display='inline';}
DynReply.prototype.hide=function(){console.log("hide dynreply");this.elem.style.display="none";} DynReply.prototype.hide=function(){console.log("hide dynreply");this.elem.style.display="none";}