From d40a122313bc08519d8caeb7ea741b5eb8aebcdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Mon, 21 Sep 2015 21:24:24 +0200 Subject: [PATCH] rollback hidden visibility of content to ensure it is not visible through a non opaque canvas --- src/View.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/View.js b/src/View.js index bad0b34..c78bf8f 100644 --- a/src/View.js +++ b/src/View.js @@ -12,7 +12,8 @@ const renderVcontent = function (width, height, id, children) { top: 0, left: 0, width: width+"px", - height: height+"px" + height: height+"px", + visibility: "hidden" }; return
{content}
; };