From ed675fe7914bfadef51fa827f9343df969c30163 Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Wed, 6 Dec 2017 22:54:32 +0000 Subject: [PATCH] Allow bypass of widget loading screen on hide / show. --- src/components/views/elements/AppTile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/elements/AppTile.js b/src/components/views/elements/AppTile.js index 7fe79e4684..35440f4938 100644 --- a/src/components/views/elements/AppTile.js +++ b/src/components/views/elements/AppTile.js @@ -217,7 +217,7 @@ export default React.createClass({ if (nextProps.url !== this.props.url) { this._getNewState(nextProps); this.setScalarToken(); - } else if (nextProps.show && !this.props.show) { + } else if (nextProps.show && !this.props.show && this.props.waitForIframeLoad) { this.setState({ loading: true, });