sogo/UI/WebServerResources/UIxCalUserRightsEditor.js
Francis Lachapelle 468073b131 Major refresh of CSS stylesheets.
Monotone-Parent: 508bbe52515b0ad7119c755b4cc91d17e313c06b
Monotone-Revision: d09001490c2d88332ef3ec446bfd0aa488d0de8c

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-11-04T22:13:20
Monotone-Branch: ca.inverse.sogo
2009-11-04 22:13:20 +00:00

20 lines
419 B
JavaScript

/* -*- 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);