From c6bb1ead3f576c1ea51e58f2937cf848b09de71c Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Sat, 29 Sep 2007 00:17:03 +0000 Subject: [PATCH] Monotone-Parent: fb3638c94d9c1d369dd6a435659daa87490de744 Monotone-Revision: 3c338af134e65f4f3f9e3c9f5a2e69b3445bf4d4 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2007-09-29T00:17:03 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/UIxContactsUserRightsEditor.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UI/WebServerResources/UIxContactsUserRightsEditor.js b/UI/WebServerResources/UIxContactsUserRightsEditor.js index 6ef7e2fd6..ee8e8fccb 100644 --- a/UI/WebServerResources/UIxContactsUserRightsEditor.js +++ b/UI/WebServerResources/UIxContactsUserRightsEditor.js @@ -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);