Skip to content

Commit

Permalink
Added full description in tree_d3.html
Browse files Browse the repository at this point in the history
  • Loading branch information
l-singh-biomsu committed Dec 4, 2024
1 parent 898663c commit e299df4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions CURATED_SET/html/tree_d3.html
Original file line number Diff line number Diff line change
Expand Up @@ -315,16 +315,18 @@ <h1>Multiple sequence alignment will appear below</h1>
// Проходим по всем ключам объекта description
for (const [key, value] of Object.entries(description)) {
// Проверка на null
if (value !== null) {
const fieldDiv = document.createElement('div'); // Создаем новый элемент для каждой пары ключ-значение
fieldDiv.textContent = `${key}: ${value}`; // Формируем строку с названием поля и его значением
if (value !== 'null') {
const fieldDiv = document.createElement('div'); // Создаем новый контейнер для каждой пары ключ-значение

// Формируем HTML содержимое с жирным ключом и значением с новой строки
fieldDiv.innerHTML = `<strong>${key}</strong><br>${value}`;

descDiv.appendChild(fieldDiv); // Добавляем элемент в контейнер
}
}
})
.catch((error) => console.error('Ошибка:', error)); // Обработка ошибок


// // Add summary
// fetch('https://intbio.org/histonedb/CURATED_SET/classification.json')
// .then((response) => response.json())
Expand Down

0 comments on commit e299df4

Please sign in to comment.