From 4065c980548350206bc1e750030feafc3467f472 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Thu, 14 Jan 2021 16:21:50 +0200 Subject: [PATCH] refactor(docs-infra): more some `pwa-manifest.json` keys to the top to improve readability (#40393) This commit moves some properties with simple, string values in `pwa-manifest.json` to the top (i.e. above the more lengthy `icons` array) to make them easier to discover. PR Close #40393 --- aio/src/pwa-manifest.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aio/src/pwa-manifest.json b/aio/src/pwa-manifest.json index eec15cd33b..832b749ec5 100644 --- a/aio/src/pwa-manifest.json +++ b/aio/src/pwa-manifest.json @@ -1,6 +1,9 @@ { - "short_name": "angular.io", "name": "Angular Documentation", + "short_name": "angular.io", + "background_color": "#1976d2", + "theme_color": "#1976d2", + "display": "standalone", "icons": [ { "src": "assets/images/favicons/favicon-194x194.png", @@ -19,8 +22,5 @@ "purpose": "maskable" } ], - "start_url": "/?utm_source=homescreen", - "background_color": "#1976d2", - "theme_color": "#1976d2", - "display": "standalone" + "start_url": "/?utm_source=homescreen" }