Add integration for Chrome webapps mode

This commit is contained in:
Benjamin Renard 2014-01-12 02:47:26 +01:00
parent 5891b19968
commit b3687a77e4
4 changed files with 10 additions and 1 deletions

View File

@ -5,6 +5,9 @@ NETWORK:
CACHE:
favicon.png
icon-196x196.png
icon-128x128.png
inc/myco.js
inc/myco_confirm.js
inc/myco_objects.js

BIN
icon-128x128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
icon-196x196.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -1,10 +1,16 @@
<!DOCTYPE html>
<html manifest="cache.manifest">
<!--<html manifest="cache.manifest">-->
<html>
<head>
<title>MyCo</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.png">
<link rel="shortcut icon" sizes="196x196" href="icon-196x196.png">
<link rel="shortcut icon" sizes="128x128" href="icon-128x128.png">
<link rel="apple-touch-icon" sizes="128x128" href="icon-128x128.png">
<link rel="apple-touch-icon-precomposed" sizes="128x128" href="icon-128x128.png">
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="inc/lib/bootstrap/css/bootstrap.min.css">