Monotone-Parent: c088913eb8e3df69e9e9a7f92fa06e84b9099eff

Monotone-Revision: 7636364e216ee5da36da58bf68969d1177723bff

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-02-15T15:26:08
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-02-15 15:26:08 +00:00
parent fcce286366
commit 494e54e861
2 changed files with 6 additions and 2 deletions
+3
View File
@@ -1,5 +1,8 @@
2010-02-15 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/SchedulerUI.js (gotoToday): set the
selected day to the today date.
* UI/WebServerResources/SchedulerUIDnD.js
(SOGoEventDragGhostController.showGhosts): ghosts now also have an
"eventInside" DIV to contain the title and draw the border. This
+3 -2
View File
@@ -697,8 +697,7 @@ function onDateSelectorGotoMonth(event) {
function onCalendarGotoDay(node) {
var day = node.getAttribute("date");
var needRefresh = (listFilter == 'view_selectedday'
&& day != currentDay);
var needRefresh = (listFilter == 'view_selectedday' && day != currentDay);
changeDateSelectorDisplay(day);
changeCalendarDisplay( { "day": day } );
@@ -709,6 +708,8 @@ function onCalendarGotoDay(node) {
}
function gotoToday() {
var todayDate = new Date();
selectedDayDate = todayDate.getDayString();
changeDateSelectorDisplay('');
changeCalendarDisplay();