Remove useless top and left

pull/213/head
Chuck 2023-10-11 23:11:36 -07:00
parent 45001d3349
commit 90b54b7638
1 changed files with 0 additions and 2 deletions

View File

@ -66,8 +66,6 @@ function placestalker(stalker, x, y) {
stalker.y = y;
const left = stalker.x + "px";
const top = stalker.y + "px";
stalker.img.style.top = `0`;
stalker.img.style.left = `0`;
stalker.img.style.transform = `translate(${left}, ${top})`
}