implementazione citazioni, in progress
This commit is contained in:
parent
98ae98c3d4
commit
f4821005d9
|
@ -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+"<br>")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue