From c48f51de357b0d6db02c6cb50c0ff37101d668b5 Mon Sep 17 00:00:00 2001 From: Pavle Goloskokovic Date: Thu, 23 Nov 2017 13:12:21 +0100 Subject: [PATCH] Setting marker to null on removeMarker call --- v3/src/sound/BaseSound.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v3/src/sound/BaseSound.js b/v3/src/sound/BaseSound.js index d85713bc4..1d8e932cd 100644 --- a/v3/src/sound/BaseSound.js +++ b/v3/src/sound/BaseSound.js @@ -184,7 +184,8 @@ var BaseSound = new Class({ return true; }, removeMarker: function (markerName) { - return false; + this.markers[markerName] = null; + return true; }, play: function (markerName, config) { if (markerName === void 0) { markerName = ''; }