JQM 1.2 - Min Height Improperly Set?
iOS Simulator (iPhone 4S)
iOS 6
JQM 1.2
Using the "getting started" boiler plate code below, min height for the
data-role="page"
is being set to 416px, which leaves a small 4px gap at the bottom.
Does anyone have an idea why this is happening? How to fix it?
<!DOCTYPE html> <html> <head> <title>My Page</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script> </head> <body> <div data-role="page"> <div data-role="header"> <h1>My Title</h1> </div> <div data-role="content"> <p>Hello world</p> </div> </div> </body> </html>