Skip to content
This repository has been archived by the owner on May 2, 2020. It is now read-only.

Commit

Permalink
closes 577 - Preloading screen should have same background color as i…
Browse files Browse the repository at this point in the history
…cons
  • Loading branch information
scriptPilot authored and scriptPilot committed May 22, 2017
1 parent 175e2d1 commit 99dd992
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- [x] [#566 - App cache does not work in online mode](https://github.com/scriptPilot/app-framework/issues/566)
- [x] [#571 - iOS homescreen app: Statusbar overlay but no statusbar visible in landscape mode](https://github.com/scriptPilot/app-framework/issues/571)
- [x] [#575 - Icons not updated on image background color change](https://github.com/scriptPilot/app-framework/issues/575)
- [x] [#577 - Preloading screen should have same background color as icons](https://github.com/scriptPilot/app-framework/issues/577)

## Version 1.7.23

Expand Down
2 changes: 1 addition & 1 deletion client/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<title><%= htmlWebpackPlugin.options.title %></title>
<%= htmlWebpackPlugin.options.iconTags %>
</head>
<body>
<body style="background: <%= htmlWebpackPlugin.options.iconBackgroundColor %>">

<!-- Noscript -->
<noscript>Please activate JavaScript!</noscript>
Expand Down
1 change: 0 additions & 1 deletion client/init.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ html, body {
}
#loadingOverlay,
#errorOverlay {
background: #fafafa;
position: fixed;
top: 0;
left: 0;
Expand Down
1 change: 1 addition & 0 deletions scripts/webpack-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ let createConfiguration = function (mode) {
template: abs(env.cache, 'index.ejs'),
title: env.cfg.title,
iconTags: iconTags, // favicon.ico will be loaded by browser default from root directory
iconBackgroundColor: env.cfg.iconBackgroundColor,
inject: true,
minify: mode === 'production' ? {
removeComments: true,
Expand Down

0 comments on commit 99dd992

Please sign in to comment.