fay-jquery v0.6 Release Notes

Release Date: 2013-12-26 // over 10 years ago
    • ๐Ÿ†“ Constrain more free type variables to Selectable
    • ๐Ÿ”„ Change getAttr :: Text -> JQuery -> Fay Text to Text -> JQuery -> Fay (Defined Text)

Previous changes from v0.5

    • โž• Add Selectable typeclass (with instances for Text, JQuery and Element. String is not a valid instance.)
    • select and is now accept Selectable a => a as the first argument.
    • ๐Ÿšš selectElement, selectObject, isJQuery, and isElement has been removed in favor of select and is.
    • createJQuery :: Text -> a -> Fay JQuery has been replaced by selectInContext :: (Selectable a, Selectable b) => a -> b -> Fay JQuery
    • isWith :: (Double -> Bool) -> JQuery -> Fay JQuery has changed to isWith :: (Int -> Bool) -> JQuery -> Fay JQuery
    • โšก๏ธ Updated usage instructions in README

    ๐Ÿ› Bug fixes:

    • is now returns Bool