Defined loop property for WebAudioSound class

This commit is contained in:
Pavle Goloskokovic 2017-12-12 19:42:21 +01:00
parent 121672d442
commit 02962f316e

View file

@ -291,4 +291,16 @@ Object.defineProperty(WebAudioSound.prototype, 'seek', {
}
}
});
/**
* Property indicating whether or not
* the sound or current sound marker will loop.
*
* @property {boolean} loop
*/
Object.defineProperty(WebAudioSound.prototype, 'loop', {
get: function () {
},
set: function (value) {
}
});
module.exports = WebAudioSound;