diff --git a/static/js/documentInfoView.leftovers.js b/static/js/documentInfoView.leftovers.js index 8d59564..21bf258 100644 --- a/static/js/documentInfoView.leftovers.js +++ b/static/js/documentInfoView.leftovers.js @@ -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); diff --git a/static/js/infoView.leftovers.js b/static/js/infoView.leftovers.js index f3a1a73..54f6681 100644 --- a/static/js/infoView.leftovers.js +++ b/static/js/infoView.leftovers.js @@ -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); }