mirror of
https://github.com/Mibew/tray.git
synced 2025-01-23 18:40:33 +03:00
11 lines
421 B
JavaScript
11 lines
421 B
JavaScript
window.attachEvent('onload', mkwidth);
|
|
window.attachEvent('onresize', mkwidth);
|
|
|
|
function mkwidth(){
|
|
if(document.getElementById("wrap700")) {
|
|
document.getElementById("wrap700").style.width = document.documentElement.clientWidth < 750 ? "750px" : "100%";
|
|
}
|
|
if(document.getElementById("wrap400")) {
|
|
document.getElementById("wrap400").style.width = document.documentElement.clientWidth < 450 ? "450px" : "100%";
|
|
}
|
|
}; |