Skip to content

Commit

Permalink
Add web app manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Dec 29, 2016
1 parent 358d55f commit c390978
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ else
rm $WEB_ROOT/index.intermediate.html

cp service-worker.js $WEB_ROOT/service-worker.js
cp manifest.json $WEB_ROOT/manifest.json

echo "Living standard output to $WEB_ROOT"
fi

Expand Down
1 change: 1 addition & 0 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ urlPrefix: https://tc39.github.io/ecma262/; spec: ECMASCRIPT
</style>
<script src="https://resources.whatwg.org/file-issue.js" async></script>
<script src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js" async></script>
<link rel="manifest" href="/manifest.json">


<h2 id="intro">Introduction</h2>
Expand Down
20 changes: 20 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"short_name": "Streams",
"name": "The WHATWG Streams Standard",
"icons": [
{
"src": "https://resources.whatwg.org/logo-streams.svg",
"sizes": "any",
"type": "image/svg+xml"
},
{
"src": "https://resources.whatwg.org/logo-streams.png",
"sizes": "500x500",
"type": "image/png"
}
],
"start_url": "/",
"display": "browser",
"background_color": "#3c790a",
"theme_color": "#3c790a"
}

0 comments on commit c390978

Please sign in to comment.