Monotone-Parent: c7c119b8830f974eae43854ab61fdff9fc0c72d3

Monotone-Revision: 5c82b99d5706b81d029752ca424be6a61a7cc96c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-08-19T17:40:28
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-08-19 17:40:28 +00:00
parent aa8a110edf
commit 5840f2a4a2
13 changed files with 367 additions and 62 deletions

View File

@@ -373,10 +373,13 @@ function onPopupReminderWindow(event) {
if (event) {
if (ComponentEditor.reminderWindow && ComponentEditor.reminderWindow.open && !ComponentEditor.reminderWindow.closed)
ComponentEditor.reminderWindow.focus();
else
ComponentEditor.reminderWindow = window.open(ApplicationBaseURL + "editReminder",
sanitizeWindowName(activeCalendar + activeComponent + "Reminder"),
"width=250,height=150");
else {
var height = (emailAlarmsEnabled ? 215 : 150);
ComponentEditor.reminderWindow
= window.open(ApplicationBaseURL + "editReminder",
sanitizeWindowName(activeCalendar + activeComponent + "Reminder"),
"width=255,height=" + height);
}
}
}
else if (reminderHref)