Last active
October 6, 2015 10:18
-
-
Save thomasjbradley/2978712 to your computer and use it in GitHub Desktop.
html: iOS meta tags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
http://blog.cloudfour.com/seven-things-i-learned-while-making-an-ipad-web-app-2/ | |
--> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="apple-mobile-web-app-status-bar-style" content="default|black|black-translucent"> | |
<meta name="format-detection" content="telephone=no"> | |
<!-- | |
For multiple touch icons and start up screens | |
http://mathiasbynens.be/notes/touch-icons | |
--> | |
<!-- | |
Forced number pads | |
http://bradfrostweb.com/blog/mobile/better-numerical-inputs-for-mobile-forms/ | |
--> | |
<input type="number" pattern="[0-9]*" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment