/** * These functions are designed to create the summary context * */ var privacy_icon = "privacy_tip"; function create_short_summary_saved(list){ let card = "

These data will be saved:

"; console.log(list) for(let i = 0; i < list.length; i++){ card += getpictogramdata(list[i].text); } return card ; } function create_short_summary_may(list){ let card = "

data maybe collected

"; for(let i = 0; i < list.length; i++){ card += getpictogramdata(list[i].text); } return card; } function create_short_summary_third(list){ let card = "

These third parties are associated with this service

"; for(let i = 0; i < list.length; i++){ card += getpictogramthird(list[i].text); } return card; } function getIcon(){ return privacy_icon; }