mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-24 22:10:30 +03:00
997e6d81ab
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@618 c66351dc-e62f-0410-b875-e3a5c0b9693f
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 < 700 ? "750px" : "100%";
|
|
}
|
|
if(document.getElementById("wrap400")) {
|
|
document.getElementById("wrap400").style.width = document.documentElement.clientWidth < 400 ? "450px" : "100%";
|
|
}
|
|
}; |