mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 12:43:26 +00:00
Update Config.js
This commit is contained in:
parent
d7519533f5
commit
bba300b866
1 changed files with 2 additions and 12 deletions
|
@ -94,22 +94,12 @@ var Config = new Class({
|
||||||
/**
|
/**
|
||||||
* @const {number} Phaser.Core.Config#resizeInterval - How many ms should elapse before checking if the browser size has changed?
|
* @const {number} Phaser.Core.Config#resizeInterval - How many ms should elapse before checking if the browser size has changed?
|
||||||
*/
|
*/
|
||||||
this.resizeInterval = GetValue(
|
this.resizeInterval = GetValue(scaleConfig, 'resizeInterval', 500, config);
|
||||||
scaleConfig,
|
|
||||||
'resizeInterval',
|
|
||||||
500,
|
|
||||||
config
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @const {?(HTMLElement|string)} Phaser.Core.Config#fullscreenTarget - The DOM element that will be sent into full screen mode, or its `id`. If undefined Phaser will create its own div and insert the canvas into it when entering fullscreen mode.
|
* @const {?(HTMLElement|string)} Phaser.Core.Config#fullscreenTarget - The DOM element that will be sent into full screen mode, or its `id`. If undefined Phaser will create its own div and insert the canvas into it when entering fullscreen mode.
|
||||||
*/
|
*/
|
||||||
this.fullscreenTarget = GetValue(
|
this.fullscreenTarget = GetValue(scaleConfig, 'fullscreenTarget', null, config);
|
||||||
scaleConfig,
|
|
||||||
'fullscreenTarget',
|
|
||||||
null,
|
|
||||||
config
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @const {number} Phaser.Core.Config#minWidth - The minimum width, in pixels, the canvas will scale down to. A value of zero means no minimum.
|
* @const {number} Phaser.Core.Config#minWidth - The minimum width, in pixels, the canvas will scale down to. A value of zero means no minimum.
|
||||||
|
|
Loading…
Reference in a new issue