mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-27 06:15:26 +00:00
merge of '6c18461fde8c24d977a5536ff8d6c935f2d59268'
and '8c475ae12623cd98a9327714ee6321cf6526a51e' Monotone-Parent: 6c18461fde8c24d977a5536ff8d6c935f2d59268 Monotone-Parent: 8c475ae12623cd98a9327714ee6321cf6526a51e Monotone-Revision: c74a323dec423f5c6904633955f48fa82cac7f5f Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-07-20T20:24:01 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -52,7 +52,7 @@
|
||||
<var:component-content />
|
||||
<hr />
|
||||
<label id="commentArea"><var:string label:value="Description:"
|
||||
/><textarea name="comment" var:value="comment" /></label>
|
||||
/><textarea rows="20" name="comment" var:value="comment" /></label>
|
||||
<label id="documentLabel" style="display: none;"><var:string label:value="Document:"
|
||||
/><span class="content"
|
||||
><a href="#" id="documentHref"><!-- space --></a
|
||||
|
||||
@@ -133,7 +133,7 @@ function contactsListCallback(http) {
|
||||
}
|
||||
}
|
||||
else
|
||||
log ("ajax problem 1");
|
||||
log ("ajax problem 1: status = " + http.status);
|
||||
}
|
||||
|
||||
function onContactFoldersContextMenu(event) {
|
||||
@@ -593,7 +593,7 @@ function deletePersonalAddressBookCallback(http) {
|
||||
document.deletePersonalABAjaxRequest = null;
|
||||
}
|
||||
else
|
||||
log ("ajax problem");
|
||||
log ("ajax problem 5: " + http.status);
|
||||
}
|
||||
|
||||
function configureDragHandles() {
|
||||
|
||||
@@ -62,6 +62,12 @@ LABEL, SPAN.checkBoxList
|
||||
LABEL#commentArea
|
||||
{ height: 15em; }
|
||||
|
||||
LABEL#commentArea textarea
|
||||
{ padding: 0;
|
||||
margin: 0;
|
||||
width: 380px;
|
||||
height: 15em; }
|
||||
|
||||
SPAN.checkBoxList#participantsCB
|
||||
{ height: 7em; }
|
||||
|
||||
|
||||
@@ -153,16 +153,20 @@ function onComponentEditorLoad(event) {
|
||||
initializeDocumentHref();
|
||||
initializePrivacyMenu();
|
||||
var list = $("calendarList");
|
||||
Event.observe(list, "change",
|
||||
Event.observe(list, "mousedown",
|
||||
onChangeCalendar.bindAsEventListener(list),
|
||||
false);
|
||||
if (document.createEvent) {
|
||||
var onSelectionChangeEvent = document.createEvent("Event");
|
||||
onSelectionChangeEvent.initEvent("change", false, false);
|
||||
var onSelectionChangeEvent;
|
||||
if (isSafari())
|
||||
onSelectionChangeEvent = document.createEvent("UIEvents");
|
||||
else
|
||||
onSelectionChangeEvent = document.createEvent("Events");
|
||||
onSelectionChangeEvent.initEvent("mousedown", false, false);
|
||||
list.dispatchEvent(onSelectionChangeEvent);
|
||||
}
|
||||
else {
|
||||
list.fireEvent("onchange"); // IE
|
||||
list.fireEvent("onmousedown"); // IE
|
||||
}
|
||||
|
||||
var menuItems = $("itemPrivacyList").childNodesWithTag("li");
|
||||
|
||||
@@ -34,6 +34,12 @@ LABEL, SPAN.checkBoxList
|
||||
LABEL#commentArea
|
||||
{ height: 15em; }
|
||||
|
||||
LABEL#commentArea textarea
|
||||
{ padding: 0;
|
||||
margin: 0;
|
||||
width: 380px;
|
||||
height: 15em; }
|
||||
|
||||
SPAN.checkBoxList#participantsCB
|
||||
{ height: 7em; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user