see changelog

Monotone-Parent: 0f4484bf642d11bc96f9672226ec495c99e2301f
Monotone-Revision: b7b4b1f3f729de477db90d41fee55b91ea781b02

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2008-01-14T13:57:28
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2008-01-14 13:57:28 +00:00
parent 79267d40ce
commit 2d2fcffec5
20 changed files with 1282 additions and 254 deletions

View File

@@ -124,6 +124,19 @@ function onComponentEditorLoad(event) {
Event.observe(menuItems[i], "mousedown",
onMenuSetClassification.bindAsEventListener(menuItems[i]),
false);
$("repeatList").observe("change", onPopupRecurrenceWindow);
}
function onPopupRecurrenceWindow(event) {
if (event)
preventDefault(event);
if ($("repeatList").value == 7)
window.open(ApplicationBaseURL + "/editRecurrence", null,
"width=803,height=573");
return false;
}
FastInit.addOnLoad(onComponentEditorLoad);