risolto problema filto default
This commit is contained in:
parent
3bb611c248
commit
2aee1f4cf1
|
@ -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 = $('<div class="card card-body well well-sm mx-1 mb-1 mt-0 p-0 border-lida08" id="noteCard' + id + '_' + pos + '"' + ' name= "' + idref + '">');
|
||||
|
||||
if(risultato){
|
||||
if (isCommentInResult(idref)) {
|
||||
var noteCard = $('<div class="card card-body bg-light border-success well well-sm mx-1 mb-1 mt-0 p-0" id="noteCard' + id + '_' + pos + '"' + ' name= "' + idref + '">');
|
||||
}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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue