implementazione bottone lista risultati

This commit is contained in:
cesare 2023-02-10 16:09:14 +01:00
parent 2c28bb1500
commit d019e01a5f
2 changed files with 15 additions and 2 deletions

View File

@ -386,7 +386,8 @@ $(" ."+formaClass).hover(function(idx, element) {
}
$(".badge").remove();
$(".badge").remove();
$("#headingZero").css("display", "none")
listarisultati = []
listaPeriodiRisultato=[]
resultSentences=new Set()
@ -729,18 +730,29 @@ $(" ."+formaClass).hover(function(idx, element) {
//aggiunge badge con totale risultati accanto alle cantiche
i = 0
var totResultN=0;
for (cantica of cantiche) {
i += 1
let count = resultsInCantica.reduce((n, x) => n + (x === cantica), 0);
if (count>0){
totResultN+=count
var spanbadgecantica = $('<span />');
spanbadgecantica.attr('class', 'badge badge-primary badge-pill mx-2 lista-risultati');
spanbadgecantica.append(count +' >')
spanbadgecantica.append(count)
spanbadgecantica.appendTo($('#cantica' + i + '-badge'))
//$('#cantica' + i).after(spanbadgecantica)
}
}
//aggiunge badge con totale risultati nel bottone lista canti
if (totResultN>0){
$("#headingZero").attr('style', 'display: d-flex;')
var spanbadgelista = $('<span />');
spanbadgelista.attr('class', 'badge badge-primary badge-pill mx-2 lista-risultati');
spanbadgelista.append(totResultN)
spanbadgelista.appendTo($('#cantica0-badge'))
}
//aggiunge badge con totale risultati accanto ai canti
console.log('results end...')
//console.log(sid)

View File

@ -60,6 +60,7 @@ document.addEventListener("dblclick", function(e){
sentence[i].classList.remove('font-weight-normal');
}
getDimensionsDiv()
if (tmpsent==lsentid)
return
}