More iOS web app tweaks

* add apple-mobile-web-app-capable meta tag for home screen web app
* set viewport to device-width
This commit is contained in:
Donald Burr 2015-10-20 15:37:59 -07:00
parent 9575411593
commit 86a051b290
3 changed files with 6 additions and 3 deletions

View file

@ -2,7 +2,9 @@
<html lang="en">
<head>
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<meta name="viewport" content="width=320, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- width=320 -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta charset="utf-8">
<title>SIF Tools</title>
<link href="css/external/jquery-ui.css" rel="stylesheet">