See ChangeLog

Monotone-Parent: 3bcf335dfec03346a40495ed251c4c99d8b3890f
Monotone-Revision: fb988c964ef041fc784d33b6c0cf192735fe88a0

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-06-16T20:21:38
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2010-06-16 20:21:38 +00:00
parent 922c760c95
commit 98df4f0682
4 changed files with 40 additions and 1 deletions
+2 -1
View File
@@ -191,9 +191,10 @@ var SOGoAutoCompletionInterface = {
}
// Show popup menu
var div = Element.up(input, 'DIV');
var offsetScroll = Element.cumulativeScrollOffset(input);
var offset = Element.positionedOffset(input);
if (offset.top < 50)
if (div.getStyle('position') == 'relative')
// Hack for some situations where the offset must be computed differently
offset = Element.cumulativeOffset(input);
var top = offset.top - offsetScroll.top + node.offsetHeight + 3;