fay-jquery v0.6 Release Notes
Release Date: 2013-12-26 // almost 11 years ago-
- 🆓 Constrain more free type variables to
Selectable
- 🔄 Change
getAttr :: Text -> JQuery -> Fay Text
toText -> JQuery -> Fay (Defined Text)
- 🆓 Constrain more free type variables to
Previous changes from v0.5
-
- ➕ Add
Selectable
typeclass (with instances forText
,JQuery
andElement
.String
is not a valid instance.) select
andis
now acceptSelectable a => a
as the first argument.- 🚚
selectElement
,selectObject
,isJQuery
, andisElement
has been removed in favor ofselect
andis
. createJQuery :: Text -> a -> Fay JQuery
has been replaced byselectInContext :: (Selectable a, Selectable b) => a -> b -> Fay JQuery
isWith :: (Double -> Bool) -> JQuery -> Fay JQuery
has changed toisWith :: (Int -> Bool) -> JQuery -> Fay JQuery
- ⚡️ Updated usage instructions in README
🐛 Bug fixes:
is
now returnsBool
- ➕ Add