From ae890eca8a633e4fc2134a57b3155f9c330c1db7 Mon Sep 17 00:00:00 2001 From: Pavle Goloskokovic Date: Sun, 18 Feb 2018 21:23:30 +0100 Subject: [PATCH] Removed redundant docs --- src/sound/html5/HTML5AudioSound.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/sound/html5/HTML5AudioSound.js b/src/sound/html5/HTML5AudioSound.js index 95a3b3d65..3a1171c57 100644 --- a/src/sound/html5/HTML5AudioSound.js +++ b/src/sound/html5/HTML5AudioSound.js @@ -563,20 +563,11 @@ Object.defineProperty(HTML5AudioSound.prototype, 'mute', { this.emit('mute', this, value); } }); - -/** - * Volume setting. - * - * @name Phaser.Sound.HTML5AudioSound#volume - * @type {number} - */ Object.defineProperty(HTML5AudioSound.prototype, 'volume', { - get: function () { return this.currentConfig.volume; }, - set: function (value) { this.currentConfig.volume = value; @@ -593,7 +584,6 @@ Object.defineProperty(HTML5AudioSound.prototype, 'volume', { */ this.emit('volume', this, value); } - }); /**