Monotone-Parent: 4ce3b021affc8e3b084f3f0ec5a1cf04859e8e56

Monotone-Revision: 97f575a86bdffe611740d9ece60ebb194d833c51

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-08-16T21:49:59
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-08-16 21:49:59 +00:00
parent e7967130a4
commit ac375cd9fe
2 changed files with 30 additions and 11 deletions

View File

@@ -210,18 +210,16 @@ function createAttachment(node, list) {
}
function clickedEditorSave(sender) {
document.pageform.action = "save";
document.pageform.submit();
refreshOpener();
document.pageform.action = "save";
document.pageform.submit();
return false;
}
function clickedEditorDelete(sender) {
document.pageform.action = "delete";
document.pageform.submit();
refreshOpener();
window.close();
document.pageform.action = "delete";
document.pageform.submit();
window.close();
return false;
}