mirror of
https://github.com/photonstorm/phaser
synced 2024-11-17 10:18:42 +00:00
Commented out logs for beta build
This commit is contained in:
parent
c23f701456
commit
861de841b0
2 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue