From b7bdaf02807b8904e8fbc6b9ac1b529fe63afbea Mon Sep 17 00:00:00 2001 From: Thomas JUND Date: Thu, 17 Feb 2022 17:27:03 +0100 Subject: [PATCH] JS: force `display: none` to textarea (#61915) --- src-js/godo.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src-js/godo.js b/src-js/godo.js index 780dd41..51f74f4 100644 --- a/src-js/godo.js +++ b/src-js/godo.js @@ -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 = (() => {