Add integration for Chrome webapps mode
Benjamin Renard

Benjamin Renard commited on 2014-01-12 01:47:26
Showing 4 changed files, with 10 additions and 1 deletions.

... ...
@@ -5,6 +5,9 @@ NETWORK:
5 5
 
6 6
 CACHE:
7 7
 favicon.png
8
+icon-196x196.png
9
+icon-128x128.png
10
+
8 11
 inc/myco.js
9 12
 inc/myco_confirm.js
10 13
 inc/myco_objects.js
... ...
@@ -1,10 +1,16 @@
1 1
 <!DOCTYPE html>
2
-<html manifest="cache.manifest">
2
+<!--<html manifest="cache.manifest">-->
3
+<html>
3 4
   <head>
4 5
     <title>MyCo</title>
5 6
     <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
7
+    <meta name="mobile-web-app-capable" content="yes">
6 8
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 9
     <link rel="shortcut icon" href="favicon.png">
10
+    <link rel="shortcut icon" sizes="196x196" href="icon-196x196.png">
11
+    <link rel="shortcut icon" sizes="128x128" href="icon-128x128.png">
12
+    <link rel="apple-touch-icon" sizes="128x128" href="icon-128x128.png">
13
+    <link rel="apple-touch-icon-precomposed" sizes="128x128" href="icon-128x128.png">
8 14
     <!-- Bootstrap -->
9 15
 <!-- Latest compiled and minified CSS -->
10 16
 <link rel="stylesheet" href="inc/lib/bootstrap/css/bootstrap.min.css">
11 17