AEM 6.1 SP1 Component height not calculated correctly in edit mode touch UI
Hi,
I have component which is displayed correctly on AEM 6.1. However, when I moved it to AEM 6.1 SP1 server, it caused display problem on edit mode on touch UI. The display problem happened on Edit mode on touch UI. it is fine for the preview mode and the classic UI.
After comparing the difference between the AEM 6.1 SP1 and AEM 6.1, I noticed div and iframe height calculated from the AEM 6.1 SP1 seems wrong for this page.
In AEM 6.1 SP1 server:
<div id="ContentWrapper" style="height: 662px;">
<div id="FullScreenMask" style="display: none;"></div>
<iframe width="100%" height="500" frameborder="0" allowfullscreen="" id="ContentFrame" src="/content/xxx/testhome.html" style="height: 662px;"></iframe>
</div>
while in AEM 6.1, it is
<div id="ContentWrapper" style="height: 4276px;">
<div id="FullScreenMask" style="display: none;"></div>
<iframe width="100%" height="500" frameborder="0" allowfullscreen="" id="ContentFrame" src="/content/xxx/testhome.html" style="height: 4276px;"></iframe>
</div>
Any suggestion for fix this?
Thanks in advance.