Monotone-Parent: ae1175be0c9d05824b26a07d1b734e1cdc59b419

Monotone-Revision: 297eac68f47b31a940e2b2870531f021a26e31ef

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-09-05T18:43:20
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2006-09-05 18:43:20 +00:00
parent c5ae66bd37
commit d1bdd8f094

View file

@ -83,7 +83,7 @@ function onSelectAll() {
return false;
}
function displayAppointment(sender) {
function displayAppointment(event, sender) {
var aptId = sender.getAttribute("aptId");
var urlstr = ApplicationBaseURL + aptId + "/view";
@ -92,7 +92,8 @@ function displayAppointment(sender) {
"location=0,directories=0,status=0,menubar=0,copyhistory=0");
win.focus();
return false; /* stop following the link */
event.cancelBubble = true;
event.returnValue = false;
}
function onContactRefresh(node)