Commented out logs for beta build

This commit is contained in:
Richard Davey 2018-10-16 11:45:01 +01:00
parent c23f701456
commit 861de841b0
2 changed files with 4 additions and 4 deletions

View file

@ -386,7 +386,7 @@ var Game = new Class({
DebugHeader(this);
console.log('Canvas added to DOM');
// console.log('Canvas added to DOM');
AddToDOM(this.canvas, this.config.parent);

View file

@ -85,7 +85,7 @@ var ScaleManager = new Class({
preBoot: function ()
{
// Parse the config to get the scaling values we need
console.log('preBoot');
// console.log('preBoot');
this.setParent(this.game.config.parent);
@ -96,7 +96,7 @@ var ScaleManager = new Class({
boot: function ()
{
console.log('boot');
// console.log('boot');
this.setScaleMode(this.scaleMode);
@ -137,7 +137,7 @@ var ScaleManager = new Class({
this.scaleMode = scaleMode;
console.log(config);
// console.log(config);
this.minSize.set(config.minWidth, config.minHeight);
this.maxSize.set(config.maxWidth, config.maxHeight);