mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-01 12:26:13 +00:00
11 lines
380 B
JavaScript
11 lines
380 B
JavaScript
function keepSquare() {
|
|
const images = document.querySelectorAll('.gallery-item');
|
|
for (let i = 0; i < images.length; i++) {
|
|
images[i].style.height = images[i].offsetWidth + 'px';
|
|
}
|
|
|
|
const groups = document.querySelectorAll('.group-item');
|
|
for (let i = 0; i < groups.length; i++) {
|
|
groups[i].style.height = groups[i].offsetWidth + 'px';
|
|
}
|
|
} |