Skip to content

Commit 6a24135

Browse files
Reverted type changes
1 parent 0726386 commit 6a24135

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/sound/BaseSound.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ var BaseSound = new Class({
208208
this.config = Extend(this.config, config);
209209

210210
/**
211-
* Object containing markers definitions.
211+
* Object containing markers definitions (Object.<string, SoundMarker>).
212212
*
213213
* @name Phaser.Sound.BaseSound#markers
214-
* @type {Object.<string, SoundMarker>}
214+
* @type {object}
215215
* @default {}
216216
* @readOnly
217217
* @since 3.0.0
@@ -355,7 +355,7 @@ var BaseSound = new Class({
355355
*/
356356
play: function (markerName, config)
357357
{
358-
if (markerName === undefined) { markerName = ''; }
358+
if (markerName === void 0) { markerName = ''; }
359359

360360
if (typeof markerName === 'object')
361361
{

0 commit comments

Comments
 (0)