Fixed scale problem #12

Merged
H4CK3R-01 merged 1 commits from fix_scale_problem into main 2021-06-10 09:31:01 +00:00

View File

@ -197,10 +197,24 @@ function generate_circle(graphics, x, y) {
} }
function calculate_size() { function calculate_size() {
if (game.offsetWidth > game.offsetHeight) { let width;
return game.offsetHeight; let height;
if (game.offsetWidth > window.innerWidth) {
width = window.innerWidth - document.getElementById('chat').offsetWidth;
} else { } else {
return game.offsetWidth; width = game.offsetWidth;
}
if (game.offsetHeight > window.innerHeight) {
height = window.innerHeight - document.getElementsByTagName('header')[0].offsetHeight;
} else {
height = game.offsetHeight;
}
if (width > height) {
return height;
} else {
return width;
} }
} }