projects
/
Plinn.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Réindexation des memberdata. Refactoring.
[Plinn.git]
/
skins
/
ajax_scripts
/
DHTMLapi.js
diff --git
a/skins/ajax_scripts/DHTMLapi.js
b/skins/ajax_scripts/DHTMLapi.js
index
c45a914
..
41e49f3
100755
(executable)
--- 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;
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");
var style = document.defaultView;
var cssDecl = style.getComputedStyle(elem, "");
result = cssDecl.getPropertyValue("top");