Monotone-Parent: 6983b54c9f08ae3a30a944b03aba053d002a3e44

Monotone-Revision: 7c43b14e9157686aa029894c48c4f5e4292832f7

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-05-22T15:52:41
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-05-22 15:52:41 +00:00
parent c517a79cdf
commit f694938fd1
+3 -4
View File
@@ -295,7 +295,7 @@ function moveTo(uri) {
/* contact menu entries */
function onContactRowDblClick(event) {
var contactId = this.getAttribute('id');
var contactId = this.getAttribute('contactid');
openContactWindow(URLForFolderID(currentAddressBook)
+ "/" + contactId + "/edit", contactId);
@@ -308,11 +308,10 @@ function onContactSelectionChange(event) {
if (rows.length == 1) {
var node = $(rows[0]);
loadContact(node.getAttribute('id'));
loadContact(node.getAttribute('contactid'));
}
else if (rows.length > 1) {
else if (rows.length > 1)
$('contactView').update();
}
}
function onMenuEditContact(event) {