Skip to content
Snippets Groups Projects
Verified Commit ccedf93e authored by David Beniamine's avatar David Beniamine
Browse files

WIP todo for filters

parent aa3bdac4
Branches
Tags
1 merge request!61156 mosaic view filter
......@@ -834,9 +834,11 @@ function openMosaic() {
$("#popupMosaicSpace").show();
let container = $('#popupMosaicMosaic');
container.html('');
// TODO append filter div
// TODO is there a better way to iterate over tags or documents ?
for ( let [k, v] of Object.entries(rekall.sortings.colors.categories)) {
let category = $('<div/>').addClass('mosaic_category').css('background', getTagGradientColor(v));
// TODO append button on filter div
for (let i in v.tags){
category.append(getMosaicItem(v.tags[i]));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment