diff --git a/js/browseMgr_5.1.js b/js/browseMgr_5.1.js index e65dee6..0baecd0 100644 --- a/js/browseMgr_5.1.js +++ b/js/browseMgr_5.1.js @@ -1067,11 +1067,6 @@ $(document).ready(function() { filterOn = false; } break; - /*case "CommentoRes": - $(".filterRiferimentiOn").css('display', 'none'); - $(".filterRiferimentiOff").css('display', 'inline-block'); - filterOn = true; - break;*/ case "CommentoQuery": if(parcid[4] == "On"){ $(".filterRiferimentiOn").css('display','none'); @@ -1095,7 +1090,6 @@ $(document).ready(function() { if (!cantoDisplayed.includes('#vistaFrasi') && !hasCommentsJson(cid)) { return } - var commentArea = $('#displaynote'); var idCommento = "CommentoQuery_" + parcid[1] + "_" + parcid[2] + "_" + parcid[3]; @@ -1121,19 +1115,16 @@ $(document).ready(function() { } else { versText = ", Verso " + gruppoVersi; } - currentGroup = createNoteGroup(cantica, getRoman(parcid[2]), versText, k, commentsSQL[k].length) noteAdded = false; commentsSQL[k].forEach(function(value, i) { currentGroup.append(createNoteEntry(value, k, i, filterOn, risultato)) }); - if (!filterOn) { - commentArea.append(currentGroup); - } else { - if (!k.includes("-")) { - commentArea.append(currentGroup); - } - } + commentArea.append(currentGroup); + + if (k.includes("-") && !noteAdded && filterOn) { + currentGroup.css('display', 'none'); + } } $('#tab-list #vis0-tab').tab('show') }) @@ -1218,11 +1209,11 @@ $(document).ready(function() { function createNoteEntry(comments, id, pos, filterOn, risultato) { var idref = comments.IdRiferimento var noteCard = $('
'); - if(risultato){ if (isCommentInResult(idref)) { var noteCard = $('
'); - }else{ + noteAdded = true; + }else{ if (filterOn) { noteCard.css("display", "none"); } else { @@ -1280,6 +1271,7 @@ $(document).ready(function() { } collapseCardBody.appendTo(collapseNote); collapseNote.appendTo(noteCard); + return noteCard; }