File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ Context.prototype.draw = function draw() {
144144Context . prototype . _initDOMRenderer = function _initDOMRenderer ( ) {
145145 this . _domRendererRootEl = document . createElement ( 'div' ) ;
146146 this . _rootEl . appendChild ( this . _domRendererRootEl ) ;
147- this . _domRendererRootEl . style . display = 'none ' ;
147+ this . _domRendererRootEl . style . visibility = 'hidden ' ;
148148
149149 this . _domRenderer = new DOMRenderer (
150150 this . _domRendererRootEl ,
@@ -233,7 +233,7 @@ Context.prototype.getRootSize = function getRootSize() {
233233 */
234234Context . prototype . checkInit = function checkInit ( ) {
235235 if ( this . _initDOM ) {
236- this . _domRendererRootEl . style . display = 'block ' ;
236+ this . _domRendererRootEl . style . visibility = 'visible ' ;
237237 this . _initDOM = false ;
238238 }
239239} ;
You can’t perform that action at this time.
0 commit comments