rollback hidden visibility of content to ensure it is not visible through a non opaque canvas

This commit is contained in:
Gaëtan Renaudeau 2015-09-21 21:24:24 +02:00
parent 50d8923219
commit d40a122313

View File

@ -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 <div key={"content-"+id} style={childrenStyle}>{content}</div>;
};