mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-26 05:45:24 +00:00
@@ -30,6 +30,8 @@ Bug fixes
|
||||
- handle emails having an attachment as their content
|
||||
- fixed JavaScript syntax error in attendees editor
|
||||
- fixed wrong comparison of meta vs. META tag in HTML mails
|
||||
- fixed popup menu position when moved to the left (#3381)
|
||||
- fixed dialog position when at the bottom of the window (#2646, #3378)
|
||||
|
||||
2.3.2 (2015-09-16)
|
||||
------------------
|
||||
|
||||
@@ -856,6 +856,11 @@ function onViewEventCallback(http) {
|
||||
} else
|
||||
para.hide();
|
||||
|
||||
var windowHeight = window.height();
|
||||
var bottomOffset = windowHeight - div.getDimensions().height - top;
|
||||
if (bottomOffset < 0)
|
||||
top += bottomOffset;
|
||||
|
||||
div.setStyle({ left: left + "px", top: top + "px" });
|
||||
div.show();
|
||||
configureLinks(div);
|
||||
@@ -3493,6 +3498,12 @@ function onCalendarImport(event) {
|
||||
|
||||
var div = $("uploadDialog");
|
||||
var res = $("uploadResults");
|
||||
|
||||
var windowHeight = window.height();
|
||||
var bottomOffset = windowHeight - div.getDimensions().height - top;
|
||||
if (bottomOffset < 0)
|
||||
top += bottomOffset;
|
||||
|
||||
res.setStyle({ top: top + "px", left: left + "px" });
|
||||
div.setStyle({ top: top + "px", left: left + "px" });
|
||||
div.show();
|
||||
|
||||
Reference in New Issue
Block a user