mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-17 03:55:19 +00:00
6 lines
199 B
JavaScript
6 lines
199 B
JavaScript
function keepSquare() {
|
|
let square = document.getElementsByClassName('square')
|
|
for (let i = 0; i < square.length; i++) {
|
|
square[i].style.height = square[i].offsetWidth + 'px';
|
|
}
|
|
} |