modifiche funzioni di caricamento
This commit is contained in:
parent
cc767c9735
commit
bf80adafe8
|
@ -306,16 +306,19 @@ $(document).ready(function() {
|
|||
containerForme = formeseconda
|
||||
const endlc = performance.now();
|
||||
console.log(`Load `+cantica+` time: ${endlc - start} ms`);
|
||||
var elverso, formaItem
|
||||
for (var cmpItem of containerForme) {
|
||||
|
||||
formaItem = cmpItem.split("_")
|
||||
|
||||
//createDivVerso(cantica, num, canto, forma, catgram, pos)
|
||||
if (! setVersi.has(cantica + "_" + formaItem[3] + "_" + 'Canto_' + formaItem[1])){
|
||||
createDivVerso(cantica, formaItem[3], 'Canto_' + formaItem[1], formaItem[0], formaItem[4], formaItem[2])
|
||||
elverso=createDivVerso(cantica, formaItem[3], 'Canto_' + formaItem[1], formaItem[0], formaItem[4], formaItem[2])
|
||||
setVersi.add(cantica+ "_" + formaItem[3] + "_" + 'Canto_' + formaItem[1])
|
||||
}
|
||||
else{
|
||||
//setVersi = createDivVersi(setVersi, cantica, formaItem[3], 'Canto_' + formaItem[1])
|
||||
createSpanFormeNew(cantica, 'Canto_' + formaItem[1], formaItem[3], formaItem[0], formaItem[4], formaItem[2])
|
||||
createSpanFormeNew(cantica, 'Canto_' + formaItem[1], formaItem[3], formaItem[0], formaItem[4], formaItem[2], elverso)
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -348,15 +351,15 @@ $(document).ready(function() {
|
|||
}
|
||||
*/
|
||||
|
||||
function createSpanFormeNew(cantica, canto, numverso, forma, catgramm, pos) {
|
||||
function createSpanFormeNew(cantica, canto, numverso, forma, catgramm, pos, elementoverso) {
|
||||
var spanoccorrenza = $('<span />')
|
||||
var pos = parseInt(pos)
|
||||
//var pos = parseInt(pos)
|
||||
spanoccorrenza.attr('id', cantica + "_" + canto+ "_" + numverso + "_" + pos)
|
||||
spanoccorrenza.attr('data-cg', catgramm)
|
||||
//if (listarisultati.length > 0 && listarisultati.includes(spanoccorrenza.attr('id')))
|
||||
// spanoccorrenza.attr('class', "font-weight-bold mark ")
|
||||
spanoccorrenza.append(forma+" ")
|
||||
elementoverso = $('#' + cantica + "_" + canto + "_" + numverso)
|
||||
//elementoverso = $('#' + cantica + "_" + canto + "_" + numverso)
|
||||
spanoccorrenza.appendTo(elementoverso)
|
||||
//elementoverso.append(' ')
|
||||
|
||||
|
@ -400,6 +403,7 @@ $(document).ready(function() {
|
|||
spanoccorrenza.appendTo(elementoverso)
|
||||
|
||||
elementoverso.appendTo('#' + cantica + canto)
|
||||
return elementoverso
|
||||
|
||||
}
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue