We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9b030 commit 88659b6Copy full SHA for 88659b6
src/anim/controller/anim-controller.js
@@ -282,6 +282,10 @@ class AnimController {
282
283
// filter out transitions that don't have their conditions met
284
transitions = transitions.filter(function (transition) {
285
+ // if the transition is moving to the already active state, ignore it
286
+ if (transition.to === this.activeStateName) {
287
+ return false;
288
+ }
289
// when an exit time is present, we should only exit if it falls within the current frame delta time
290
if (transition.hasExitTime) {
291
let progressBefore = this._getActiveStateProgressForTime(this._timeInStateBefore);
0 commit comments