library id also changes if user is renamed
This commit is contained in:
parent
664fc702c2
commit
f979cd4890
3 changed files with 9 additions and 3 deletions
|
|
@ -310,7 +310,13 @@ oml.ui.folders = function() {
|
|||
oml.$ui.folder[index].options({title: Ox.encodeHTMLEntities(name)});
|
||||
oml.getLists(function(lists) {
|
||||
var items = lists.filter(function(list) {
|
||||
return list.user == name && list.type != 'library';
|
||||
return list.user == name && list.type != 'library';
|
||||
}),
|
||||
library = lists.filter(function(list) {
|
||||
return list.user == name && list.type == 'library';
|
||||
});
|
||||
oml.$ui.libraryList[index].options({
|
||||
items: library
|
||||
});
|
||||
oml.$ui.folder[index].$content
|
||||
.css({height: 16 + items.length * 16 + 'px'});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue