diff --git a/js/cesareBrowse.js b/js/cesareBrowse.js
index 9c54c77..596a456 100644
--- a/js/cesareBrowse.js
+++ b/js/cesareBrowse.js
@@ -796,7 +796,7 @@ function resetFrasi(){
}
var id = cid.substr(9);
var collapseNote;
-
+ var saveVersoCitazione;
for (var pos in commentsArray){
console.log("Id: "+id);
var noteCard = $('
');
@@ -806,7 +806,7 @@ function resetFrasi(){
var comments = commentsArray[pos]
if (comments.verso == id){
- createNoteHeader(noteCard, comments, id, pos, cantica, parcid);
+ createNoteHeader(noteCard, comments, id, pos, cantica, parcid, saveVersoCitazione);
collapseNote = $('
');
collapseNote.attr('id',"collapseNote"+id+ '_' + pos)
@@ -844,6 +844,7 @@ function resetFrasi(){
collapseCardBody.appendTo(collapseNote);
collapseNote.appendTo(noteCard);
commentArea.append(noteCard)
+ saveVersoCitazione = comments.VersoCitazione;
}
}
$('#tab-list #vis0-tab').tab('show')
@@ -884,7 +885,7 @@ function resetFrasi(){
}
}
- function createNoteHeader(noteCardX, comments, id, pos, cantica, parcid){
+ function createNoteHeader(noteCardX, comments, id, pos, cantica, parcid, versoCitazionePrecedente){
var nomeAutore = "";
var titoloFonte = "";
var luogoFonte = "";
@@ -901,7 +902,11 @@ function resetFrasi(){
'');
//rigaNota.append('' + cantica + '' + ", Canto " + getRoman(parcid[2]) + ", Verso " + parcid[3] + "
");
- rigaNota.append('
' + cantica + ", Canto " + getRoman(parcid[2]) + ", Verso " + parcid[3] + "
");
+ if (versoCitazionePrecedente != comments.VersoCitazione){
+ rigaNota.append('' + " Verso " + comments.VersoCitazione + "
");
+
+ }
+ //rigaNota.append('' + cantica + ", Canto " + getRoman(parcid[2]) + ", Verso " + parcid[3] + "
");
collapseButton.appendTo(buttons);
closeButton.appendTo(buttons);