(label, value)
| 984 | * @param {string | any} value its value |
| 985 | */ |
| 986 | const AddInformation = (label, value) => { |
| 987 | let informations = document.getElementById("informations-text"); |
| 988 | let newParagraph = document.createElement("p"); |
| 989 | newParagraph.innerHTML = `<span class="info-label">${label}</span> ${value}`; |
| 990 | informations.appendChild(newParagraph); |
| 991 | } |
| 992 | |
| 993 | /** |
| 994 | * @typedef {Array} MessageBoxButtonsList |