mirror of
https://github.com/Mibew/tray.git
synced 2025-01-24 02:50:34 +03:00
dc3c6ebdaa
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@402 c66351dc-e62f-0410-b875-e3a5c0b9693f
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%";
|
|
}; |