Updated onBlur and onFocus methods docs

This commit is contained in:
Pavle Goloskokovic 2018-01-06 17:57:14 +01:00
parent 88fcd1f18b
commit 78d611ee16

View file

@ -247,11 +247,15 @@ var BaseSoundManager = new Class({
this.events.dispatch(new SoundEvent(this, 'SOUND_STOP'));
},
/**
* @private
* @override
* @protected
* @method Phaser.Sound.BaseSoundManager#onBlur
*/
onBlur: NOOP,
/**
* @private
* @override
* @protected
* @method Phaser.Sound.BaseSoundManager#onFocus
*/
onFocus: NOOP,
/**