Added update marker method to BaseSound class

This commit is contained in:
Pavle Goloskokovic 2017-11-23 12:41:41 +01:00
parent 76a32e20c6
commit 6c38853a6f

View file

@ -167,6 +167,9 @@ var BaseSound = new Class({
this.markers[marker.name] = marker;
return true;
},
updateMarker: function (marker) {
return false;
},
removeMarker: function (markerName) {
return false;
},