nuova funzione: da il numero dei commenti in un verso
This commit is contained in:
parent
b6f6fc692f
commit
42b2f6bb7b
|
@ -1015,6 +1015,13 @@ function resetFrasi(){
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
function numberOfComments(cid){
|
||||||
|
|
||||||
|
var id = cid.substr(9);
|
||||||
|
//[....].filter(x => x==2).length
|
||||||
|
return commentsArray.filter(x => x.verso==id).length
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/*FINE GESTIONE CITAZIONI*/
|
/*FINE GESTIONE CITAZIONI*/
|
||||||
function getCantica(numeroCantica){
|
function getCantica(numeroCantica){
|
||||||
|
@ -1225,8 +1232,10 @@ function resetFrasi(){
|
||||||
|
|
||||||
var verso = parseInt(formaItem[3]) - 1;
|
var verso = parseInt(formaItem[3]) - 1;
|
||||||
var idCommento = "Commento_"+idcantica+"_"+canto+"_"+verso;
|
var idCommento = "Commento_"+idcantica+"_"+canto+"_"+verso;
|
||||||
if (hasComments(idCommento)){
|
//if (hasComments(idCommento)){
|
||||||
|
if (numberOfComments(idCommento)>0){
|
||||||
createCommentSpan(idCommento, elverso)
|
createCommentSpan(idCommento, elverso)
|
||||||
|
console.log("Numero commenti: "+numberOfComments(idCommento))
|
||||||
}
|
}
|
||||||
|
|
||||||
if(currSentenceId!=null && currSentenceId != sentenceid){
|
if(currSentenceId!=null && currSentenceId != sentenceid){
|
||||||
|
|
Loading…
Reference in New Issue