ultima versione
This commit is contained in:
parent
3cf9611ee9
commit
25667f72b3
|
@ -921,45 +921,34 @@ function resetFrasi(){
|
|||
if (comments.TestoFonteCitazione != null && comments.TestoFonteCitazione != "nan"){
|
||||
createModule(collapseNote,"Testo della fonte: ", comments.TestoFonteCitazione, "1", id)
|
||||
}
|
||||
|
||||
//divCampiSingoli.appendTo(collapseNote);
|
||||
|
||||
|
||||
if (comments.NaturaRiferimento != null){
|
||||
//createModule(commentArea,"Tipo Riferimento: ", comments.NaturaRiferimento, "2", id)
|
||||
createDivSingola(divCampiSingoli, "Tipo Riferimento: ", comments.NaturaRiferimento)
|
||||
divCampiSingoli.appendTo(collapseNote);
|
||||
|
||||
}
|
||||
if (comments.commentario != null){
|
||||
//createModule(commentArea,"Commentatore: ", comments.commentario, "3", id)
|
||||
createDivSingola(divCampiSingoli, "Commentatore: ", comments.commentario)
|
||||
divCampiSingoli.appendTo(collapseNote);
|
||||
|
||||
}
|
||||
if (comments.RapportoSoggettoOggetto != null){
|
||||
//createModule(commentArea,"Rapporto Testo/Fonte: ", comments.RapportoSoggettoOggetto, "4", id)
|
||||
createDivSingola(divCampiSingoli, "Rapporto Testo/Fonte: ", comments.RapportoSoggettoOggetto)
|
||||
divCampiSingoli.appendTo(collapseNote);
|
||||
|
||||
}
|
||||
//divCampiSingoli.appendTo(collapseNote);
|
||||
//commentArea.append(divCampiSingoli);
|
||||
|
||||
if (comments.RapportoCommentoCommentatoreText != null && comments.RapportoCommentoCommentatoreText != "nan"){
|
||||
createModuleCommentatore (collapseNote, comments.RapportoCommentoCommentatoreText, "5", id)
|
||||
}
|
||||
|
||||
if (comments.annotazione != null && comments.annotazione != "nan"){
|
||||
createModule(collapseNote,"Annotazione: ", comments.annotazione, "6", id)
|
||||
}
|
||||
if (comments.frammentoNota != null && comments.frammentoNota != "nan"){
|
||||
createModule(collapseNote,"Nota: ", comments.frammentoNota, "7", id)
|
||||
}
|
||||
|
||||
}
|
||||
if (comments.annotazione != null && comments.annotazione != "nan"){
|
||||
createModule(collapseNote,"Annotazione completa: ", comments.annotazione, "6", id)
|
||||
}
|
||||
if (comments.NotaFonteCitazione != null && comments.NotaFonteCitazione != "nan" && comments.NotaFonteCitazione != ""){
|
||||
createModule(collapseNote,"Nota dell'annotatore: ", comments.NotaFonteCitazione, "8", id)
|
||||
}
|
||||
//commentArea.append(collapseNote)
|
||||
commentArea.append('<hr class="pt-0 center text-dark bg-dark" style="width: 100%;">');
|
||||
}
|
||||
}
|
||||
|
@ -1051,7 +1040,6 @@ function resetFrasi(){
|
|||
var commentoCommentatore = commento.split(',');
|
||||
var divModule = $('<div class="module pb-0">');
|
||||
var divNote = $('<div class="collapse" id="collapse'+num+'Note'+id+'" aria-expanded="false">')
|
||||
//var divNote = $('<div class="collapse" id="collapse'+num+'Note'+id+'" aria-expanded="false">')
|
||||
|
||||
var divContent = $('<div class="d-flex align-content-start flex-wrap text-muted">');
|
||||
var divTesto = $('<div class="p-2">')
|
||||
|
@ -1064,7 +1052,7 @@ function resetFrasi(){
|
|||
esitoCommento = esitoCommento.replace("'Rapporto': ", "")
|
||||
esitoCommento = esitoCommento.replaceAll("'", "");
|
||||
esitoCommento = esitoCommento.replaceAll('}', "");
|
||||
var autoreCommento = commentoCommentatore[1];
|
||||
var autoreCommento = commentoCommentatore[1]+' '+commentoCommentatore[2];
|
||||
autoreCommento = autoreCommento.replace(" 'Autore':", "")
|
||||
autoreCommento = autoreCommento.replaceAll("'", "");
|
||||
if (autoreCommento == "") {
|
||||
|
@ -1074,9 +1062,9 @@ function resetFrasi(){
|
|||
esitoCommento = "Rapporto nullo"
|
||||
}
|
||||
if (urlCommento == "") {
|
||||
nota = '<b>Rapporto Commento/Commentatore: [</b>Commento nullo, '+esitoCommento+']</b><br>';
|
||||
nota = '<b>Rapporto Commento/Commentatore: </b>'+esitoCommento+' Commento nullo, '+'</b><br>';
|
||||
} else {
|
||||
nota = '<b>Rapporto Commento/Commentatore: [</b><a href="'+urlCommento+'"target="_blank"<i>' + autoreCommento+ '</i></a>, ' + esitoCommento + ']</b><br>';
|
||||
nota = '<b>Rapporto Commento/Commentatore: </b>'+esitoCommento +' <a href="'+urlCommento+'"target="_blank"<i>' + autoreCommento+ '</i></a>, ' + '</b><br>';
|
||||
}
|
||||
|
||||
divModule.append('<a class="read-more collapsed" data-toggle="collapse" href="#collapse'+num+'Note'+id+'" role="button"></a>')
|
||||
|
|
Loading…
Reference in New Issue