Risolti alcuni problemi... parzialmente anche i bottoni in lista
risultati
This commit is contained in:
parent
b178208033
commit
df760d97b9
|
@ -1016,6 +1016,9 @@ $(document).ready(function() {
|
|||
var queryComment = false;
|
||||
var idClass = $(this).attr('class');
|
||||
var parentClass = $(this).parent().attr('class');
|
||||
if(cid.includes("Proemio")){
|
||||
parentClass = "mark";
|
||||
}
|
||||
filterOn = true;
|
||||
|
||||
if (idClass.includes("filterRiferimentiOn")) {
|
||||
|
@ -1871,14 +1874,15 @@ $(document).ready(function() {
|
|||
}
|
||||
|
||||
if (!(loadedCanti.has(cid))) {
|
||||
//loadCommentsBottons(cid,formeCanto, numCantica, canto)
|
||||
showCanto(formeCanto, numCantica, canto)
|
||||
loadCommentsBottons(cid,formeCanto, numCantica, canto)
|
||||
//showCanto(formeCanto, numCantica, canto)
|
||||
loadedCanti.add(cid)
|
||||
}
|
||||
|
||||
verso = commentoRisultato[3];
|
||||
if (verso == "Proemio"){
|
||||
var proemio = $("#Titolo"+cantica + "Canto_" + canto ).clone()
|
||||
proemio.attr("id","#Titolo" + cantica + '_Canto_' + canto +"_VF")
|
||||
versiFrase.append("Proemio ")
|
||||
versiFrase.append(proemio)
|
||||
} else {
|
||||
|
@ -1893,6 +1897,7 @@ $(document).ready(function() {
|
|||
|
||||
for (var num = 0; num<versiPerGruppo; num++){
|
||||
var liVerso = $("#" + cantica + '_Canto_' + canto + '_' + verso).clone()
|
||||
liVerso.attr("id","#" + cantica + '_Canto_' + canto + '_' + verso+"_VF")
|
||||
versiFrase.append(liVerso)
|
||||
verso++
|
||||
}
|
||||
|
@ -1917,8 +1922,9 @@ $(document).ready(function() {
|
|||
}
|
||||
|
||||
async function loadCommentsBottons(cid, formeCanto, numCantica, canto) {
|
||||
await initCitazioni(cid)
|
||||
showCanto(formeCanto, numCantica, canto)
|
||||
|
||||
await initCitazioni(cid)
|
||||
//drawMinimap(cid, false)
|
||||
addFormaListenersInCanto(cid);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue