From 42b2f6bb7be8e2949ba9e54d36a654c2542ae6ad Mon Sep 17 00:00:00 2001 From: cesare Date: Tue, 21 Nov 2023 10:11:33 +0100 Subject: [PATCH] nuova funzione: da il numero dei commenti in un verso --- js/cesareBrowse.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/js/cesareBrowse.js b/js/cesareBrowse.js index dd5e21e..6927762 100644 --- a/js/cesareBrowse.js +++ b/js/cesareBrowse.js @@ -1015,6 +1015,13 @@ function resetFrasi(){ } 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*/ function getCantica(numeroCantica){ @@ -1225,8 +1232,10 @@ function resetFrasi(){ var verso = parseInt(formaItem[3]) - 1; var idCommento = "Commento_"+idcantica+"_"+canto+"_"+verso; - if (hasComments(idCommento)){ + //if (hasComments(idCommento)){ + if (numberOfComments(idCommento)>0){ createCommentSpan(idCommento, elverso) + console.log("Numero commenti: "+numberOfComments(idCommento)) } if(currSentenceId!=null && currSentenceId != sentenceid){