You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the area of code: InitialiseElements.prototype.visitPseudoState = function (pseudoState, deepHistoryAbove) { var _this = this; _super.prototype.visitPseudoState.call(this, pseudoState, deepHistoryAbove); // evaluate comppletion transitions once vertex entry is complete if (pseudoState.isInitial()) { this.behavior(pseudoState).endEnter.push(function (message, instance, deepHistory) { if (instance.getLastKnownState(pseudoState.parent) && pseudoState.isHistory()) { invoke(_this.behavior(pseudoState).leave, message, instance);
The part && pseudoState.isHistory() is needed otherwise initial states will be treated like history states.
Also comppletion is misspelled.
The text was updated successfully, but these errors were encountered:
In the area of code:
InitialiseElements.prototype.visitPseudoState = function (pseudoState, deepHistoryAbove) { var _this = this; _super.prototype.visitPseudoState.call(this, pseudoState, deepHistoryAbove); // evaluate comppletion transitions once vertex entry is complete if (pseudoState.isInitial()) { this.behavior(pseudoState).endEnter.push(function (message, instance, deepHistory) { if (instance.getLastKnownState(pseudoState.parent) && pseudoState.isHistory()) { invoke(_this.behavior(pseudoState).leave, message, instance);
The part
&& pseudoState.isHistory()
is needed otherwise initial states will be treated like history states.Also comppletion is misspelled.
The text was updated successfully, but these errors were encountered: