From 27e0d1d4ecb17f9907e24016b2d5f319524a1656 Mon Sep 17 00:00:00 2001 From: Daniel Sellers Date: Thu, 23 Jul 2015 11:19:43 -0600 Subject: [PATCH] Return visibility to the element --- lib/components/TinyMCE.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/components/TinyMCE.js b/lib/components/TinyMCE.js index a2f137e..3fa7972 100644 --- a/lib/components/TinyMCE.js +++ b/lib/components/TinyMCE.js @@ -98,6 +98,9 @@ var TinyMCE = React.createClass({ }; tinymce.init(config); + + self.getDOMNode().style.hidden = ""; + this._isInit = true; },