From f4821005d91280e6f23763c2f4e6c05aeea66856 Mon Sep 17 00:00:00 2001 From: cesare Date: Tue, 7 Nov 2023 08:41:14 +0100 Subject: [PATCH] implementazione citazioni, in progress --- js/cesareBrowse.js | 71 ++-------------------------------------------- 1 file changed, 3 insertions(+), 68 deletions(-) diff --git a/js/cesareBrowse.js b/js/cesareBrowse.js index 7491636..afbc1a0 100644 --- a/js/cesareBrowse.js +++ b/js/cesareBrowse.js @@ -45,8 +45,7 @@ $(document).ready(function() { var showOffset = 30; var idCitazione = "citazioneFrase"; - //initComments(); - loadCitazioni(); + initCitazioni(); resetResult=function(){ //console.log('clean result') @@ -108,9 +107,7 @@ $("#valoreVista").on('change', function() { resetSentenceStructure(tmpsent) shownSentenceList.delete(tmpsent) - //$("#periodograph").empty() periodograph.parentNode.removeChild(periodograph); - } } }); @@ -727,7 +724,7 @@ function resetFrasi(){ } /*INIZIO GESTIONE CITAZIONI*/ - function loadCitazioni(){ + function initCitazioni(){ //"#InfernoCanto_1" console.log('VISTA CITAZIONI!') var mcanto=cantoDisplayed.replace("#",'') @@ -1044,69 +1041,6 @@ function resetFrasi(){ spanComment.appendTo(commentArea); }) -/* - - function initComments(){ - var commentsItem = {} - commentsItem['verso'] = "1_1_1"; - commentsItem['annotazione'] = "qui si contempla il commento del verso "; - commentsItem['commentario'] = " Alessandro Vellutello 1554 "; - commentsItem['frammentoNota'] = "frammento"; - commentsItem['testoVerso'] = "testo verso"; - commentsArray.push(commentsItem); - - var commentsItem = {} - - commentsItem['verso'] = "1_1_5"; - commentsItem['annotazione'] = "qui si contempla il commento del verso "; - commentsItem['commentario'] = " Alessandro Volta 1654 "; - commentsItem['frammentoNota'] = "frammento"; - commentsItem['testoVerso'] = "testo verso"; - commentsArray.push(commentsItem); - - var commentsItem = {} - - commentsItem['verso'] = "1_1_15"; - commentsItem['annotazione'] = "qui si contempla il commento del verso "; - commentsItem['commentario'] = " Giuseppe Mazzini 1584 "; - commentsItem['frammentoNota'] = "frammento"; - commentsItem['testoVerso'] = "testo verso"; - commentsArray.push(commentsItem); - - var commentsItem = {} - - commentsItem['verso'] = "1_1_18"; - commentsItem['annotazione'] = "qui si contempla il commento del verso "; - commentsItem['commentario'] = " Alessandro Manzoni 1558 "; - commentsItem['frammentoNota'] = "frammento"; - commentsItem['testoVerso'] = "testo verso"; - commentsArray.push(commentsItem); - var commentsItem = {} - - commentsItem['verso'] = "2_1_10"; - commentsItem['annotazione'] = "qui si contempla il commento del verso "; - commentsItem['commentario'] = " Carlo Felice 1557 "; - commentsItem['frammentoNota'] = "frammento"; - commentsItem['testoVerso'] = "testo verso"; - commentsArray.push(commentsItem); - var commentsItem = {} - - commentsItem['verso'] = "3_1_7"; - commentsItem['annotazione'] = "qui si contempla il commento del verso "; - commentsItem['commentario'] = " Alberto Miconi 1658 "; - commentsItem['frammentoNota'] = "frammento"; - commentsItem['testoVerso'] = "testo verso"; - commentsArray.push(commentsItem); - var commentsItem = {} - - commentsItem['verso'] = "2_1_1"; - commentsItem['annotazione'] = "qui si contempla il commento del verso "; - commentsItem['commentario'] = " Alberto Miconi 1658 "; - commentsItem['frammentoNota'] = "frammento"; - commentsItem['testoVerso'] = "testo verso"; - commentsArray.push(commentsItem); - } - */ function getComments(cid){ @@ -1114,6 +1048,7 @@ function resetFrasi(){ for (var pos in commentsArray){ var comments = commentsArray[pos] if (comments.verso == id){ + console.log(comments) return (comments.annotazione + comments.verso + " di" + comments.commentario+"
") } }