add/remove key
This commit is contained in:
parent
3a68a85172
commit
8ad02fb30d
2 changed files with 13 additions and 0 deletions
|
@ -644,6 +644,13 @@ pandora.ui.documentInfoView = function(data, isMixed) {
|
|||
}
|
||||
})
|
||||
.appendTo($element);
|
||||
if (isMixed[key] && Ox.contains(listKeys, key)) {
|
||||
pandora.ui.addRemoveKeyDialog({
|
||||
ids: ui.collectionSelection,
|
||||
key: key,
|
||||
section: ui.section
|
||||
}).appendTo($element)
|
||||
}
|
||||
}
|
||||
});
|
||||
$element.appendTo($text);
|
||||
|
|
|
@ -714,6 +714,12 @@ pandora.ui.infoView = function(data, isMixed) {
|
|||
})
|
||||
.appendTo($element);
|
||||
}
|
||||
if (isMixed[key] && Ox.contains(listKeys, key)) {
|
||||
pandora.ui.addRemoveKeyDialog({
|
||||
ids: ui.listSelection,
|
||||
key: key,
|
||||
section: ui.section
|
||||
}).appendTo($element)
|
||||
});
|
||||
$element.appendTo($text);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue