JS: force `display: none` to textarea (#61915)

This commit is contained in:
Thomas Jund 2022-02-17 17:27:03 +01:00
parent 355553256a
commit b7bdaf0280
1 changed files with 1 additions and 0 deletions

View File

@ -24,6 +24,7 @@ export default class Godo {
constructor (textarea, options) {
this.textarea = textarea;
this.textarea.hidden = true;
this.textarea.style.display = "none";
let displayBlocksMenu = true;
this.schema = (() => {