diff --git a/js/cesareBrowse.js b/js/cesareBrowse.js index 08a9f5e..b82f4d4 100644 --- a/js/cesareBrowse.js +++ b/js/cesareBrowse.js @@ -904,42 +904,62 @@ function resetFrasi(){ commentArea.empty() var id = cid.substr(9); var collapseNote; - var claBody = $('
'); for (var pos in commentsArray){ + var claBody = $('
'); + var divCampiSingoli = $('
'); + var comments = commentsArray[pos] if (comments.verso == id){ createNoteHeader(commentArea, comments, id, cantica, parcid); - collapseNote = $('
'); - collapseNote.append(claBody); + collapseNote = $('
'); + collapseNote.attr('id',"collapseNote"+id) + collapseNote.append(claBody); + commentArea.append(collapseNote) + if (comments.TestoFonteCitazione != null && comments.TestoFonteCitazione != "nan"){ - createModule(commentArea,"Testo della fonte: ", comments.TestoFonteCitazione, "1", id) + createModule(collapseNote,"Testo della fonte: ", comments.TestoFonteCitazione, "1", id) } + + //divCampiSingoli.appendTo(collapseNote); + if (comments.NaturaRiferimento != null){ - createModule(commentArea,"Tipo Riferimento: ", comments.NaturaRiferimento, "2", id) + //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) + //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) + //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 (commentArea, comments.RapportoCommentoCommentatoreText, "5", id) + createModuleCommentatore (collapseNote, comments.RapportoCommentoCommentatoreText, "5", id) } if (comments.annotazione != null && comments.annotazione != "nan"){ - createModule(commentArea,"Annotazione: ", comments.annotazione, "6", id) + createModule(collapseNote,"Annotazione: ", comments.annotazione, "6", id) } if (comments.frammentoNota != null && comments.frammentoNota != "nan"){ - createModule(commentArea,"Nota: ", comments.frammentoNota, "7", id) + createModule(collapseNote,"Nota: ", comments.frammentoNota, "7", id) } if (comments.NotaFonteCitazione != null && comments.NotaFonteCitazione != "nan" && comments.NotaFonteCitazione != ""){ - createModule(commentArea,"Nota dell'annotatore: ", comments.NotaFonteCitazione, "8", id) + createModule(collapseNote,"Nota dell'annotatore: ", comments.NotaFonteCitazione, "8", id) } + //commentArea.append(collapseNote) commentArea.append('
'); } } @@ -1007,7 +1027,14 @@ function resetFrasi(){ commentHeader.appendTo(headerDiv); } - function createModule(commentArea,label, testo, num, id){ + function createDivSingola(divCampi, campo, valore){ + var divSingola = $('
'); + divSingola.append (''+campo+' '+valore+''); + divSingola.appendTo(divCampi); + } + + + function createModule(collapse,label, testo, num, id){ var divModule = $('
'); var divNote = $('