mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-12 11:55:09 +00:00
Monotone-Parent: 194497a44299aa739388b0b0e04ab2b178c81471
Monotone-Revision: 0baf969f5825efbb195eb2aa0eee29ef3b76e1e5 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-19T19:23:58 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -291,9 +291,8 @@ function onMenuWriteToContact(event, node)
|
||||
var node = getParentMenu(node).menuTarget.parentNode;
|
||||
var contactId = node.getAttribute('id');
|
||||
|
||||
openContactWindow(null,
|
||||
ApplicationBaseURL + currentContactFolder
|
||||
+ "/" + contactId + "/write");
|
||||
openMailComposeWindow(ApplicationBaseURL + currentContactFolder
|
||||
+ "/" + contactId + "/write");
|
||||
|
||||
return false;
|
||||
}
|
||||
@@ -324,11 +323,9 @@ function onToolbarWriteToSelectedContacts(event)
|
||||
var contactsList = $('contactsList');
|
||||
var rows = contactsList.getSelectedRowsId();
|
||||
|
||||
for (var i = 0; i < rows.length; i++) {
|
||||
openContactWindow(null,
|
||||
ApplicationBaseURL + currentContactFolder
|
||||
+ "/" + rows[i] + "/write");
|
||||
}
|
||||
for (var i = 0; i < rows.length; i++)
|
||||
openMailComposeWindow(ApplicationBaseURL + currentContactFolder
|
||||
+ "/" + rows[i] + "/write");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user