I have a simple mobile app I am putting together. I am trying to understand where a famous surface is coming from, because I think it is causing issues when I try to position an element in the upper-right-hand corner. (But for now let's stick with this mysterious surface)
The following code:
var mainContext = Engine.createContext()
var surface = new ContainerSurface
mainContext.add(surface)
Results in an element structure:
<body class=" hasGoogleVoiceExt famous-root">
<div class="famous-container" style="perspective: 1000px; -webkit-perspective: 1000;">
<div class="famous-surface"
style="width: 1366px; height: 0px; opacity: 0.999999; -webkit-transform-origin: 0% 0%; -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);">
<div class="famous-group famous-container-group"></div>
</div>
</div>
</body>
Where does that <div class="famous-surface">...</div> come from?
What specifically concerns me is that the height is listed as '0px'.
Thanks,
JD