From 7d70bfbd575740f3c46ff5e40241f41f477d836a Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Fri, 18 Jun 2021 18:03:07 +0100 Subject: [PATCH] Removed `Config.domBehindCanvas` property as it's never used internally. Fix #5749 --- src/core/Config.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/core/Config.js b/src/core/Config.js index 5dcd65d77..8b3ff7064 100644 --- a/src/core/Config.js +++ b/src/core/Config.js @@ -202,11 +202,6 @@ var Config = new Class({ */ this.domCreateContainer = GetValue(config, 'dom.createContainer', false); - /** - * @const {?boolean} Phaser.Core.Config#domBehindCanvas - Should the DOM Container that is created (if `dom.createContainer` is true) be positioned behind (true) or over the top (false, the default) of the game canvas? - */ - this.domBehindCanvas = GetValue(config, 'dom.behindCanvas', false); - /** * @const {?string} Phaser.Core.Config#domPointerEvents - The default `pointerEvents` attribute set on the DOM Container. */