chore: name

This commit is contained in:
cha0s 2021-01-19 19:39:02 -06:00
parent 21cd781784
commit ce84cedcb8

View File

@ -14,7 +14,7 @@ class Actions {
}
emitFinished() {
this.emit('@avocado/behavior/actions.finished');
this.emit('finished');
}
get index() {
@ -95,7 +95,7 @@ class Actions {
tickingPromise(context) {
return new TickingPromise(
(resolve) => {
this.once('@avocado/behavior/actions.finished', resolve);
this.once('finished', resolve);
},
(elapsed) => {
this.tick(context, elapsed);