Cut UI labels. Add expand to custom CSS

This commit is contained in:
Cohee
2024-04-27 20:02:30 +03:00
parent b42125a654
commit 5dcfda0514
2 changed files with 6 additions and 5 deletions

View File

@ -1280,6 +1280,7 @@ jQuery(function () {
const textarea = document.createElement('textarea');
textarea.value = String(bro.val());
textarea.classList.add('height100p', 'wide100p');
bro.hasClass('monospace') && textarea.classList.add('monospace');
textarea.addEventListener('input', function () {
bro.val(textarea.value).trigger('input');
});