Whenever I transition between pages using a slide effect, the new page resizes before the transition from the previous page is complete. This makes the application appear glitchy.
Is there a way to prevent this automatic resizing or auto height calculation during page transitions?
Note: I am using the following code:
Changing Page :
$.mobile.changePage($page, {changeHash:false, transition:transition});
and in my CSS file:
.ui-page {
-webkit-backface-visibility:hidden;
}