sogo/UI/WebServerResources/UIxContactsUserRightsEditor.js

20 lines
419 B
JavaScript
Raw Normal View History

/* -*- Mode: java; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
function onUpdateACL(event) {
$('userRightsForm').submit();
Event.stop(event);
return false;
}
function onCancelACL(event) {
window.close();
}
function initACLButtons() {
$("updateButton").observe("click", onUpdateACL);
$("cancelButton").observe("click", onCancelACL);
}
document.observe("dom:loaded", initACLButtons);