I have an app with a background image. To do this I have the following in the page load event:
pre
Appery('mobilecontainer').css('background-image','url("' + Appery.getImagePath('gallery15.jpg') + '")');
Appery('mobilecontainer').css('background-repeat','no-repeat');
Appery('mobilecontainer').css('background-size','cover');
/pre
This looks great on my phone but on my tablet the bottom of the screen has a white background. How can I stretch the image (without losing aspect ratio) to fit the whole screen no matter what the device size?