add option to add/remove values to listkeys in batchedit dialog

This commit is contained in:
j 2020-11-26 20:22:59 +01:00
commit b377956a13
3 changed files with 138 additions and 0 deletions

View file

@ -529,6 +529,13 @@ 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);