mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-06 08:55:08 +00:00
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:
@@ -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.
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user