Skip to content

Commit

Permalink
Опечатки
Browse files Browse the repository at this point in the history
  • Loading branch information
ColCh committed Feb 4, 2014
1 parent c40d6b6 commit 9890ee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/animate_wrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
'normal': 0,
'reverse': DIRECTION_REVERSE,
'alternate': DIRECTION_ALTERNATE,
'alternate-reverse': DIRECTION_ALTERNATE & DIRECTION_REVERSE
'alternate-reverse': DIRECTION_ALTERNATE | DIRECTION_REVERSE
};

/**
Expand Down Expand Up @@ -262,7 +262,7 @@
'none': 0,
'forwards': FILLS_FORWARDS,
'backwards': FILLS_BACKWARDS,
'both': FILLS_FORWARDS & FILLS_BACKWARDS
'both': FILLS_FORWARDS | FILLS_BACKWARDS
};

/**
Expand Down

0 comments on commit 9890ee1

Please sign in to comment.