mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-29 23:25:27 +00:00
Fix rename of calendars, improve tasks count badge
This commit is contained in:
@@ -630,6 +630,9 @@ function onFolderSelectionChange(event) {
|
||||
var node = getTarget(event);
|
||||
if (node.tagName == 'UL')
|
||||
return;
|
||||
if (node.tagName == "SPAN")
|
||||
node = node.parentNode;
|
||||
|
||||
// Update rows selection
|
||||
onRowClick(event, node);
|
||||
}
|
||||
@@ -754,9 +757,13 @@ function appendAddressBook(name, folder) {
|
||||
li.setAttribute("list-editing", "available");
|
||||
li.setAttribute("acl-editing", "available");
|
||||
li.addClassName("local");
|
||||
li.appendChild(document.createTextNode(name
|
||||
.replace("<", "<", "g")
|
||||
.replace(">", ">", "g")));
|
||||
|
||||
var displayName = document.createElement("span");
|
||||
displayName.appendChild(document.createTextNode(name
|
||||
.replace("<", "<", "g")
|
||||
.replace(">", ">", "g")));
|
||||
li.appendChild(displayName);
|
||||
|
||||
updateAddressBooksMenus();
|
||||
configureDroppables();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user