iPhone rotation shrinks page

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?
  1. <meta name="viewport" content="initial-scale=1, maximum-scale=1, width=device-width, height=device-height">
  2. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" media="screen" />
  3. <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
  4. <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
  5. ...


  6. <div data-role="page" data-theme="d" id="note" data-add-back-btn="true">
  7. <div data-role="header"> 
  8. <h1>Note</h1>   
  9. </div> 
  10. <div data-role="content">
  11. <form>
  12. <div data-role="fieldcontain">
  13. <label for="dob">Date of Birth:</label>
  14. <input type="date" name="dob" />
  15. </div>
  16. <span id="dobdata"></span>
  17. </form>
  18. </div>   
  19. </div>