Skip to content

Commit

Permalink
Fixed bug in easing function properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiaanvisser committed Jun 19, 2014
1 parent 8a0a676 commit 9440e43
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG

0.9 -> 0.9.0.1
- Fixed bug in easing properties.

0.8 -> 0.9
- Added list-style-type property.
- Added some CSS3 selectors and pseudo-classes.
- Added some missing HTML5 elements.
Expand Down
18 changes: 3 additions & 15 deletions clay.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: clay
Version: 0.9
Version: 0.9.0.1
Synopsis: CSS preprocessor as embedded Haskell.
Description:
Clay is a CSS preprocessor like LESS and Sass, but implemented as an embedded
Expand All @@ -11,20 +11,8 @@ Description:
.
The API documentation can be found in the top level module "Clay".
.
> 0.8 -> 0.9
> - Added list-style-type property.
> - Added some CSS3 selectors and pseudo-classes.
> - Added some missing HTML5 elements.
> - Added keyframes support.
> - Fixed bug in linear in transition.
> - Added Initial and Unset type classes.
> - Added animation related styling rules.
> - Restored old renderer.
> - Fixed bunch of warnings.
> - Added :last-child pseudo selector.
> - Stub test suite
> Thanks to Sergei Trofimovich, Levi Ad, Ian D. Bollinger, Ben Gamari and Oly Mi!

> 0.9 -> 0.9.0.1
> - Fixed bug in easing properties.

Author: Sebastiaan Visser
Maintainer: Sebastiaan Visser <code@fvisser.nl>
Expand Down
10 changes: 5 additions & 5 deletions src/Clay/Transition.hs
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ newtype TimingFunction = TimingFunction Value
ease, easeIn, easeOut, easeInOut, linear, stepStart, stepStop :: TimingFunction

ease = other "ease"
easeIn = other "easeIn"
easeOut = other "easeOut"
easeInOut = other "easeInOut"
easeIn = other "ease-in"
easeOut = other "ease-out"
easeInOut = other "ease-in-out"
linear = other "linear"
stepStart = other "stepStart"
stepStop = other "stepStop"
stepStart = other "step-start"
stepStop = other "step-stop"

stepsStart, stepsStop :: Integer -> TimingFunction

Expand Down

0 comments on commit 9440e43

Please sign in to comment.