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
I was able to fix by removing line 165 var callHandlers = this.start.state != state;
and replacing it with var callHandlers = false; if (this.start.stateChanged) { callHandlers = this.start.state != state; } else { callHandlers = this.state.state != state; }
The text was updated successfully, but these errors were encountered:
Sliding appears to work
I was able to fix by removing line 165
var callHandlers = this.start.state != state;
and replacing it with
var callHandlers = false; if (this.start.stateChanged) { callHandlers = this.start.state != state; } else { callHandlers = this.state.state != state; }
The text was updated successfully, but these errors were encountered: