Initializing duration property to 0

This commit is contained in:
Pavle Goloskokovic 2018-01-20 21:00:50 +01:00
parent d2a3d98abe
commit 65696b17a5

View file

@ -9,6 +9,7 @@ var NoAudioSound = new Class({
this.isPlaying = false;
this.isPaused = false;
this.totalRate = 1;
this.duration = 0;
}
});
module.exports = NoAudioSound;