mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 04:15:26 +00:00
Monotone-Parent: 1b2bd479da4660b08f3b99662b1d83c231901dcd
Monotone-Revision: 7673d0874bfab0e145fb002673765af736eb602a Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2007-12-17T17:19:10 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -386,7 +386,7 @@ function uixDeleteSelectedContacts(sender) {
|
||||
}
|
||||
|
||||
var contactView = $('contactView');
|
||||
contactView.innerHTML = '';
|
||||
contactView.update();
|
||||
|
||||
for (var i = 0; i < rows.length; i++) {
|
||||
var url, http, rowElem;
|
||||
@@ -459,10 +459,17 @@ function newContact(sender) {
|
||||
return false; /* stop following the link */
|
||||
}
|
||||
|
||||
function onFolderSelectionChange() {
|
||||
function onFolderSelectionChange(event) {
|
||||
var folderList = $("contactFolders");
|
||||
var nodes = folderList.getSelectedNodes();
|
||||
$("contactView").innerHTML = '';
|
||||
|
||||
if (event) {
|
||||
var node = getTarget(event);
|
||||
if (node.tagName == 'UL')
|
||||
return;
|
||||
}
|
||||
|
||||
$("contactView").update();
|
||||
|
||||
if (nodes[0].hasClassName("denied")) {
|
||||
var div = $("contactsListContent");
|
||||
|
||||
Reference in New Issue
Block a user