added isPaused field to BaseSound class

This commit is contained in:
Pavle Goloskokovic 2017-11-17 14:51:23 +01:00
parent 0eca17520c
commit 7a4939d435

View file

@ -93,6 +93,12 @@ var BaseSound = new Class({
* @property {boolean} isPlaying
*/
this.isPlaying = false;
/**
* Flag indicating if sound is currently paused.
*
* @property {boolean} isPaused
*/
this.isPaused = false;
/**
* Object containing markers definitions.
*