mirror of
https://github.com/sigmasternchen/Diary
synced 2025-03-14 22:58:55 +00:00
11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
window.onload = function() {
|
|
resetStyle();
|
|
}
|
|
|
|
window.onresize = function() {
|
|
resetStyle();
|
|
}
|
|
|
|
var resetStyle = function() {
|
|
document.getElementById("mainContainer").style.minHeight = window.innerHeight + "px";
|
|
}
|