diff --git a/index_5.0.html b/index_5.0.html
index 52b35ee..878b26b 100644
--- a/index_5.0.html
+++ b/index_5.0.html
@@ -828,11 +828,14 @@
diff --git a/js/script_5.0.js b/js/script_5.0.js
index 67c99e6..6f07832 100644
--- a/js/script_5.0.js
+++ b/js/script_5.0.js
@@ -690,6 +690,7 @@ $(document).ready(function() {
const listaCommentatori = getCommentatoriS();
const listaAutoriFontiCitazioni = getAutoriFontiCitazioniS();
const listaAreeTematiche = getAreeTematicheS();
+ const listaFonti = getFontiS();
// Variabili e costanti funzionali-
var minimapScrolling = false;
@@ -732,7 +733,13 @@ $(document).ready(function() {
.val(p).html(p));
};
});
- $.each(listaAutoriFontiCitazioni, function (i, p) {
+ $.each(listaFonti, function (i, p) {
+ if ( !!p && p.length > 2) {
+ $('#Fonte100').append($('')
+ .val(p).html(p));
+ };
+ });
+ $.each(listaAutoriFontiCitazioni, function (i, p) {
if ( !!p && p.length > 2) {
$('#Autore_Fonte100').append($('')
.val(p).html(p));
@@ -745,6 +752,7 @@ $(document).ready(function() {
};
});
addClaContext(100);
+ updateClaRifListItem(100,100);
};