Initializing key property with provided attribute value

This commit is contained in:
Pavle Goloskokovic 2018-01-20 20:58:31 +01:00
parent 10daa22fb0
commit d282f3a1cb

View file

@ -5,6 +5,7 @@ var NoAudioSound = new Class({
initialize: function NoAudioSound(manager, key, config) {
EventEmitter.call(this);
this.manager = manager;
this.key = key;
}
});
module.exports = NoAudioSound;