From 2cbe4e8fc1dbf19b6c4278ad3e3453d6cedf6c8f Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Fri, 18 Mar 2011 03:13:56 +0000 Subject: [PATCH] See ChangeLog Monotone-Parent: dc272097703f10ee6c465fdca0d4d40682d7ce55 Monotone-Revision: aaedd91765af6a097de0bc56f29320d2bff91b79 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2011-03-18T03:13:56 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 12 ++++++++++-- UI/WebServerResources/SchedulerUI.js | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 992cc0278..342cd380d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,12 @@ -2011-03-17 francis +2011-03-18 Francis Lachapelle + + * UI/WebServerResources/SchedulerUI.js (initCalendars): we must + set "showCompletedTasks" earlier in order to properly fetch the + tasks upon the first refresh. + +2011-03-17 Francis Lachapelle + + * SoObjects/Appointments/iCalEvent+SOGo.m (-quickRecord): * UI/MailerUI/UIxMailAccountActions.m (-listMailboxesAction): moved code that fetches the inbox quota to [SOGoMailAccount getInboxQuota]. @@ -16,7 +24,7 @@ extracted from updateMailboxTreeInPage. It is called when a folder operation returns the inbox quota. -2011-03-15 francis +2011-03-15 Francis Lachapelle * UI/MailerUI/UIxMailListActions.m (-getMailAction): removed this method that is no longer used since live-loading. diff --git a/UI/WebServerResources/SchedulerUI.js b/UI/WebServerResources/SchedulerUI.js index d7480bb4d..6b21df15e 100644 --- a/UI/WebServerResources/SchedulerUI.js +++ b/UI/WebServerResources/SchedulerUI.js @@ -2917,10 +2917,10 @@ function initCalendars() { var controller = new SOGoTabsController(); controller.attachToTabsContainer(tabsContainer); + showCompletedTasks = parseInt(UserSettings['ShowCompletedTasks']); initDateSelectorEvents(); initCalendarSelector(); configureSearchField(); - showCompletedTasks = parseInt(UserSettings['ShowCompletedTasks']); configureLists(); $("calendarList").attachMenu("calendarsMenu"); $(document.body).observe("click", onBodyClickHandler);