Added play method that only returns false

This commit is contained in:
Pavle Goloskokovic 2018-01-20 21:11:53 +01:00
parent dcc406d218
commit f8cefe6606

View file

@ -40,6 +40,9 @@ var NoAudioSound = new Class({
},
removeMarker: function (markerName) {
return null;
},
play: function (markerName, config) {
return false;
}
});
module.exports = NoAudioSound;