mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-24 14:10:28 +03:00
8 lines
248 B
JavaScript
8 lines
248 B
JavaScript
|
window.attachEvent('onload', mkwidth);
|
||
|
window.attachEvent('onresize', mkwidth);
|
||
|
|
||
|
var minwidth = 700;
|
||
|
|
||
|
function mkwidth(){
|
||
|
document.getElementById("wrap").style.width = document.documentElement.clientWidth < minwidth ? minwidth+"px" : "100%";
|
||
|
};
|