Hi,
Elements of my app should scale screen width. A problem appears when screen height is lower than 480px (for example 320х480 in landscape mode).
http://appery.io/app/mobile-frame?src...
It seems to me height of container is limited min 480px. But I can not find where exactly.
My code for elements scaling:
var wh = $(window).height();
var ww = $(window).width();
Appery("full_grid").height(wh);
Appery("full_grid").width(ww);
Appery("text_div").height(wh);
$( window ).on( "orientationchange", function( event ) {
var wh = $(window).height();
var ww = $(window).width();
Appery("full_grid").height(wh);
Appery("full_grid").width(ww);
Appery("text_div").height(wh);
});
Thank you very much in advance!