iPhone rotation shrinks page
When I go to this page and select the date, press done, then rotate the phone, the page is small and zoom is enabled. What am I doing wrong?
-
- <meta name="viewport" content="initial-scale=1, maximum-scale=1, width=device-width, height=device-height">
-
- <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" media="screen" />
- <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
- <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
- ...
-
- <div data-role="page" data-theme="d" id="note" data-add-back-btn="true">
- <div data-role="header">
- <h1>Note</h1>
- </div>
- <div data-role="content">
- <form>
- <div data-role="fieldcontain">
- <label for="dob">Date of Birth:</label>
- <input type="date" name="dob" />
- </div>
- <span id="dobdata"></span>
- </form>
- </div>
- </div>
-