Monotone-Parent: f0f12cec0b288caae2086872cad9e044311da3b9

Monotone-Revision: 20415379d4ad22b602692f50041a0eb207e1d1fb

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-04-01T18:40:51
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-04-01 18:40:51 +00:00
parent 64d1eeab3b
commit 7aca9d276b
2 changed files with 10 additions and 1 deletions
+4
View File
@@ -1,5 +1,9 @@
2011-04-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/SchedulerUI.js (initCalendars): initialize
"showCompletedTaskls" to 0 when the ShowCompletedTasks settings
variable is not available.
* SoObjects/Appointments/SOGoCalendarComponent.m
(-contentAsString): strip alarms from component if the alarms are
disabled on the containing calendar.
+6 -1
View File
@@ -2917,7 +2917,12 @@ function initCalendars() {
var controller = new SOGoTabsController();
controller.attachToTabsContainer(tabsContainer);
showCompletedTasks = parseInt(UserSettings['ShowCompletedTasks']);
if (UserSettings['ShowCompletedTasks']) {
showCompletedTasks = parseInt(UserSettings['ShowCompletedTasks']);
}
else {
showCompletedTasks = 0;
}
initDateSelectorEvents();
initCalendarSelector();
configureSearchField();