See ChangeLog.

Monotone-Parent: 28ba6a8fb0de57f2cd4f4b6c185e5b0303c886ec
Monotone-Revision: 0891f9bac2704aa4c0ef0224c54360af14c5618a

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-05-16T19:24:07
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2010-05-16 19:24:07 +00:00
parent 2c9cefb3f9
commit 661d3f2809
3 changed files with 10 additions and 1 deletions
+3
View File
@@ -1,5 +1,8 @@
2010-05-21 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/SchedulerUI.js (onMenuCurrentView):
propagate the click event when right-clicking on an event.
* UI/WebServerResources/UIxPreferences.js (endEditable,
onColorPickerChoice): those functions will automatically trigger
the reload of the current module (hasChanged is set to 1).
+2 -1
View File
@@ -146,7 +146,8 @@ DIV#calendarView
bottom: 0px;
width: 100%;
border-top: 1px solid #aaa;
border-left: 1px solid #aaa; }
border-left: 1px solid #aaa;
-khtml-user-select: none; }
DIV#calendarView A
{ text-decoration: none;
+5
View File
@@ -1342,6 +1342,8 @@ function newBaseEventDIV(eventRep, event, eventText) {
}
innerDiv.addClassName(categoryStyle);
}
eventCell.observe("contextmenu", onMenuCurrentView);
if (event[2] == null) {
// Status field is not defined -- user can't read event
eventCell.observe("selectstart", listRowMouseDownHandler);
@@ -2169,7 +2171,10 @@ function onMenuSharing(event) {
function onMenuCurrentView(event) {
$("eventDialog").hide();
var onClick = onCalendarSelectEvent.bind(this);
onClick(event);
popupMenu(event, 'currentViewMenu', this);
}
function onMenuAllDayView(event) {