From: BenoƮt Pin Date: Fri, 26 Nov 2010 21:09:58 +0000 (+0100) Subject: bugfix de la fonction getObjectTop. X-Git-Url: https://scm.cri.ensmp.fr/git/Plinn.git/commitdiff_plain/56dfc2f96b5590d925ed296b519fb93dda2284ab bugfix de la fonction getObjectTop. --- diff --git a/skins/ajax_scripts/DHTMLapi.js b/skins/ajax_scripts/DHTMLapi.js index c45a914..41e49f3 100755 --- a/skins/ajax_scripts/DHTMLapi.js +++ b/skins/ajax_scripts/DHTMLapi.js @@ -161,7 +161,9 @@ function getObjectLeft(obj) { function getObjectTop(obj) { var elem = getRawObject(obj); var result = 0; - if (document.defaultView) { + if (elem.offsetTop) { + result = elem.offsetTop; + } else if (document.defaultView) { var style = document.defaultView; var cssDecl = style.getComputedStyle(elem, ""); result = cssDecl.getPropertyValue("top");