open-trade
2021-12-22 14:28:08 +08:00
parent b6feaa695f
commit 334c94ceb3
3 changed files with 12 additions and 5 deletions

View File

@@ -311,3 +311,10 @@ function Progress()
this.value = "";
}
function isReasonableSize(r) {
var x = r[0];
var y = r[1];
return !(x < -3200 || x > 3200 || y < -3200 || y > 3200);
}