documentation, limit for serials length, fixes

This commit is contained in:
Ivan
2023-10-16 02:57:17 +03:00
parent 343cc24b01
commit cc01af1b03
16 changed files with 2531 additions and 1492 deletions

View File

@ -248,6 +248,19 @@
}
});
});
document.addEventListener('DOMContentLoaded', function () {
var radioLabels = document.querySelectorAll('.radio-label');
radioLabels.forEach(function (label) {
var labelText = label.textContent.trim();
if (labelText.length > 10) {
label.textContent = '';
label.appendChild(document.createTextNode(labelText.slice(0, 9) + '...'));
}
});
});
</script>