위젯의 float설정시 값을 잘 못 가져오는 문제 해결

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2992 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-11-19 01:37:58 +00:00
parent 0c7cf408ae
commit 503c57d67c

View file

@ -14,7 +14,7 @@ function getStyle(obj) {
// float: 값을 구하는게 IE랑 그외가 다름
function getFloat(obj) {
var float = xIE4Up?obj.parentNode.style.styleFloat:obj.parentNode.style.cssFloat;
var float = xIE4Up?obj.style.styleFloat:obj.style.cssFloat;
if(!float) float = 'left';
return float;
}