@@ -20,7 +20,7 @@ var NOOP = require('../../utils/NOOP');
2020 * breaking on devices that don't support any audio playback technologies.
2121 *
2222 * @class NoAudioSoundManager
23- * @extends EventEmitter
23+ * @extends Phaser.Sound.BaseSoundManager
2424 * @memberOf Phaser.Sound
2525 * @constructor
2626 * @author Pavle Goloskokovic <pgoloskokovic@gmail.com> (http://prunegames.com)
@@ -126,7 +126,7 @@ var NoAudioSoundManager = new Class({
126126 *
127127 * @param {string } key - Asset key for the sound.
128128 * @param {ISoundConfig } [config] - An optional config object containing default sound settings.
129- *
129+ *
130130 * @return {ISound } The new sound instance.
131131 */
132132 add : function ( key , config )
@@ -146,7 +146,7 @@ var NoAudioSoundManager = new Class({
146146 *
147147 * @param {string } key - Asset key for the sound.
148148 * @param {ISoundConfig } [config] - An optional config object containing default sound settings.
149- *
149+ *
150150 * @return {IAudioSpriteSound } The new audio sprite sound instance.
151151 */
152152 addAudioSprite : function ( key , config )
@@ -189,7 +189,7 @@ var NoAudioSoundManager = new Class({
189189 * @since 3.0.0
190190 *
191191 * @param {ISound } sound - The sound object to remove.
192- *
192+ *
193193 * @return {boolean } True if the sound was removed successfully, otherwise false.
194194 */
195195 remove : function ( sound )
@@ -204,7 +204,7 @@ var NoAudioSoundManager = new Class({
204204 * @since 3.0.0
205205 *
206206 * @param {string } key - The key to match when removing sound objects.
207- *
207+ *
208208 * @return {number } The number of matching sound objects that were removed.
209209 */
210210 removeByKey : function ( key )
0 commit comments