Monotone-Parent: fb3638c94d9c1d369dd6a435659daa87490de744

Monotone-Revision: 3c338af134e65f4f3f9e3c9f5a2e69b3445bf4d4

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2007-09-29T00:17:03
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle 2007-09-29 00:17:03 +00:00
parent a13f89414c
commit c6bb1ead3f

View file

@ -3,7 +3,8 @@ function onCancelClick(event) {
}
function initACLButtons() {
$("cancelButton").addEventListener("click", onCancelClick, false);
var button = $("cancelButton");
Event.observe(button, "click", onCancelClick);
}
addEvent(window, "load", initACLButtons);