sogo/UI/WebServerResources/UIxContactsUserRightsEditor.js
Francis Lachapelle c6bb1ead3f Monotone-Parent: fb3638c94d9c1d369dd6a435659daa87490de744
Monotone-Revision: 3c338af134e65f4f3f9e3c9f5a2e69b3445bf4d4

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2007-09-29T00:17:03
Monotone-Branch: ca.inverse.sogo
2007-09-29 00:17:03 +00:00

11 lines
211 B
JavaScript

function onCancelClick(event) {
window.close();
}
function initACLButtons() {
var button = $("cancelButton");
Event.observe(button, "click", onCancelClick);
}
addEvent(window, "load", initACLButtons);