Skip to content

Commit

Permalink
Update transitions.imba
Browse files Browse the repository at this point in the history
  • Loading branch information
somebee committed Jan 29, 2024
1 parent 2a82ced commit a8cd950
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/imba/src/imba/dom/transitions.imba
Original file line number Diff line number Diff line change
Expand Up @@ -291,31 +291,31 @@ export class Easer < Emitter
extend class Element

# called when element is getting ready to enter
def transition-in-init transition
def transition-in-init\any transition
yes

# called when element is ready to enter
def transition-in transition
def transition-in\any transition
yes

# called when element has finished entering
def transition-in-end transition
def transition-in-end\any transition
yes

# called when element has been asked to leave while entering
def transition-in-cancel transition
def transition-in-cancel\any transition
yes

# called when element starts to leave
def transition-out transition
def transition-out\any transition
yes

# called when element is done leaving
def transition-out-end transition
def transition-out-end\any transition
yes

# called when element re-enters while leaving
def transition-out-cancel transition
def transition-out-cancel\any transition
yes

get ease
Expand Down

0 comments on commit a8cd950

Please sign in to comment.