browsing in progress

This commit is contained in:
cesare 2022-11-11 22:26:10 +01:00
parent a449a22c8f
commit c539c060d4
1 changed files with 5 additions and 4 deletions

View File

@ -148,7 +148,7 @@ $(document).ready(function() {
for (verso of listarisultativersi){
idverso='#'+verso
console.log(idverso)
$(idverso).attr('class', $(idverso).attr('class').replace(" dark-blue ", ""))
$(idverso).attr('class', $(idverso).attr('class').replace(" dark-blue", ""))
}
if (currentMinimap!='')
showMinimap(currentMinimap)
@ -339,8 +339,9 @@ $(document).ready(function() {
canto=binding.get('Canto').value;
//numero del verso
numverso=binding.get('NumeroVerso').value;
resultVersi.add(cantica+"_"+canto.replace(" ", "_")+"_"+numverso)
//posizione delframmento
pos=binding.get('pos').value;
resultVersi.add(cantica+"_"+canto.replace(" ", "_")+"_"+numverso+"_"+pos)
});
seachbBindingsStream.on('end', () => {
@ -348,7 +349,7 @@ $(document).ready(function() {
for (verso of listarisultativersi){
idverso='#'+verso
console.log(idverso)
$(idverso).attr('class', $(idverso).attr('class')+" dark-blue ")
$(idverso).attr('class', $(idverso).attr('class')+" dark-blue")
}