From b320f930f36a3072be60eba0536bdb6661c51f1e Mon Sep 17 00:00:00 2001 From: NodeCode Date: Tue, 3 Mar 2015 12:20:52 +0100 Subject: [PATCH] inline-block removed --- src/Stage.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Stage.js b/src/Stage.js index c5fb17ea..8a0aa454 100644 --- a/src/Stage.js +++ b/src/Stage.js @@ -37,7 +37,6 @@ DIV = 'div', RELATIVE = 'relative', - INLINE_BLOCK = 'inline-block', KONVA_CONTENT = 'konvajs-content', SPACE = ' ', UNDERSCORE = '_', @@ -700,7 +699,6 @@ // content this.content = Konva.document.createElement(DIV); this.content.style.position = RELATIVE; - this.content.style.display = INLINE_BLOCK; this.content.className = KONVA_CONTENT; this.content.setAttribute('role', 'presentation'); container.appendChild(this.content);