From 532119484f7e4aa806c39c65868f91ffc2ad76f1 Mon Sep 17 00:00:00 2001 From: Collin Green Date: Fri, 16 Oct 2015 17:22:57 -0700 Subject: [PATCH] include splash in simulator builds --- src/build/streams/html.js | 2 +- src/build/targets/browser/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build/streams/html.js b/src/build/streams/html.js index d477503..f169e18 100644 --- a/src/build/streams/html.js +++ b/src/build/streams/html.js @@ -255,7 +255,7 @@ exports.GameHTML = Class(function () { ]) .bind(this) .spread(function (css, js, splashExists, appCacheEvents) { - if (!splashExists && !config.isSimulated) { + if (!splashExists) { var splashPaths = { 'portrait': ['portrait2048', 'portrait1136', 'portrait1024', 'portrait960', 'portrait480'], diff --git a/src/build/targets/browser/index.js b/src/build/targets/browser/index.js index 16f692f..aec7e41 100644 --- a/src/build/targets/browser/index.js +++ b/src/build/targets/browser/index.js @@ -46,7 +46,7 @@ exports.init = function (api, app, config) { if (config.isSimulated) { config.browser = { - embedSplash: false, + embedSplash: true, embedFonts: false, appleTouchIcon: false, appleTouchStartupImage: false,