Здраствуйте, как дать доступ к this анонимной функции внутри метода push?
Пример:
g.module({
create: function(){
this.beep = g.sounds["beep"];
this.vacuum = g.sounds["vacuum"];
this.vacuum.endArr.push(function() {
// другие операции
this.beep.play(); // TypeError: this.beep is undefined
});
}
});