Removed redundant docs

This commit is contained in:
Pavle Goloskokovic 2018-02-18 21:24:29 +01:00
parent 81bebfd8c1
commit 1046991e66

View file

@ -615,15 +615,7 @@ Object.defineProperty(HTML5AudioSound.prototype, 'detune', {
Object.getOwnPropertyDescriptor(BaseSound.prototype, 'detune').set.call(this, value);
}
});
/**
* Current position of playing sound.
*
* @name Phaser.Sound.HTML5AudioSound#seek
* @type {number}
*/
Object.defineProperty(HTML5AudioSound.prototype, 'seek', {
get: function ()
{
if (this.isPlaying)
@ -640,7 +632,6 @@ Object.defineProperty(HTML5AudioSound.prototype, 'seek', {
return 0;
}
},
set: function (value)
{
if (this.manager.isLocked(this, 'seek', value))