Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #34416 from TitanNano/bug_1275076
Browse files Browse the repository at this point in the history
Bug 1275076 - convert the manifest of the clock app r=benfrancis
  • Loading branch information
benfrancis committed Aug 5, 2016
2 parents 0fe1acc + 77b1fef commit 90240f7
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 70 deletions.
3 changes: 3 additions & 0 deletions disabled_apps/clock/index.html
Expand Up @@ -4,6 +4,9 @@
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<meta charset="utf-8">
<meta name="theme-color" content="#000">
<link rel="manifest" href="./manifest.webmanifest">
<link rel="icon" href="./style/icons/clock_84.png">

<title>Clock</title>
<link rel="stylesheet" type="text/css" href="style/clock.css">
<link rel="stylesheet" type="text/css" href="style/alarm.css">
Expand Down
70 changes: 0 additions & 70 deletions disabled_apps/clock/manifest.webapp

This file was deleted.

28 changes: 28 additions & 0 deletions disabled_apps/clock/manifest.webmanifest
@@ -0,0 +1,28 @@
{
"name": "Clock",
"description": "Gaia Clock",
"lang": "en",
"short_name": "Clock",
"scope": "./",
"start_url": "./index.html",
"icons": [{
"sizes": "84x84",
"src": "./style/icons/clock_84.png"
}, {
"sizes": "126x126",
"src": "./style/icons/clock_126.png"
}, {
"sizes": "142x142",
"src": "./style/icons/clock_142.png"
}, {
"sizes": "189x189",
"src": "./style/icons/clock_189.png"
}, {
"sizes": "284x284",
"src": "./style/icons/clock_284.png"
}],
"display": "standalone",
"orientation": "natural",
"theme_color": "#000000",
"background_color": "#000000"
}

0 comments on commit 90240f7

Please sign in to comment.