auto change font size to small if text is too long

main
alexanderroese 2024-08-13 11:19:04 +02:00
parent 4e3416fd47
commit 9dbc8b00ea
1 changed files with 1 additions and 1 deletions

View File

@ -1137,7 +1137,7 @@
// create text below the iframe for information if the text is too long and we set the font size to small // create text below the iframe for information if the text is too long and we set the font size to small
this.infoText = document.createElement('span'); this.infoText = document.createElement('span');
this.infoText.value = 'Here1 Text ist zu lang. Wir haben die Schriftgröße auf klein gesetzt. Bitte überprüfe deinen Text.'; this.infoText.innerText = 'Here1 Text ist zu lang. Wir haben die Schriftgröße auf klein gesetzt. Bitte überprüfe deinen Text.';
/* this.infoText.classList.add('shx-info-text'); */ /* this.infoText.classList.add('shx-info-text'); */
this.Viewer3DContainer.appendChild(this.infoText); this.Viewer3DContainer.appendChild(this.infoText);
} }