You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
624 B
26 lines
624 B
4 years ago
|
/**
|
||
|
* These function is designed to create the summary for the collected data
|
||
|
* */
|
||
|
function create_summary_saved(list){
|
||
|
let card = "";
|
||
|
for(let i = 0; i < list.length; i++){
|
||
|
|
||
|
card += getpictogramdata("This service saves "+ list[i].text, list[i].id);
|
||
|
}
|
||
|
// was ist wenn karte leer ist
|
||
|
return card;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* These function is designed to create the summary for the third parties
|
||
|
* */
|
||
|
function create_summary_third(list){
|
||
|
let card = "";
|
||
|
for(let i = 0; i < list.length; i++){
|
||
|
card += getpictogramthird("this side may be send data to: "+list[i].text, list[i].id);
|
||
|
}
|
||
|
// was ist wenn karte leer ist
|
||
|
return card;
|
||
|
}
|
||
|
|