We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0726386 commit 6a24135Copy full SHA for 6a24135
1 file changed
src/sound/BaseSound.js
@@ -208,10 +208,10 @@ var BaseSound = new Class({
208
this.config = Extend(this.config, config);
209
210
/**
211
- * Object containing markers definitions.
+ * Object containing markers definitions (Object.<string, SoundMarker>).
212
*
213
* @name Phaser.Sound.BaseSound#markers
214
- * @type {Object.<string, SoundMarker>}
+ * @type {object}
215
* @default {}
216
* @readOnly
217
* @since 3.0.0
@@ -355,7 +355,7 @@ var BaseSound = new Class({
355
*/
356
play: function (markerName, config)
357
{
358
- if (markerName === undefined) { markerName = ''; }
+ if (markerName === void 0) { markerName = ''; }
359
360
if (typeof markerName === 'object')
361
0 commit comments