fay-jquery: jQuery bindings for Fay.

[ bsd3, fay, library, web ] [ Propose Tags ]

jQuery bindings for Fay.


[Skip to Readme]

Modules

[Last Documentation]

  • JQuery

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.2.0.0, 0.2.1.0, 0.3.0.0, 0.4.0.0, 0.4.0.1, 0.5, 0.6, 0.6.0.1, 0.6.0.2, 0.6.0.3, 0.6.1.0
Change log CHANGELOG.md
Dependencies fay-base (<0), fay-text (>=0.2) [details]
License BSD-3-Clause
Copyright Adam Bergmark, Brian Victor, Chris Done
Author Adam Bergmark, Brian Victor, Chris Done
Maintainer adam@bergmark.nl
Revised Revision 1 made by AdamBergmark at 2015-05-09T21:02:39Z
Category Web, Fay
Home page https://github.com/faylang/fay-jquery
Bug tracker https://github.com/faylang/fay-jquery/issues
Source repo head: git clone https://github.com/faylang/fay-jquery.git
Uploaded by AdamBergmark at 2013-12-26T20:52:34Z
Distributions
Reverse Dependencies 6 direct, 0 indirect [details]
Downloads 10620 total (32 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-09 [all 7 reports]

Readme for fay-jquery-0.6

[back to package description]

Fay jQuery

Changelog

jQuery bindings for Fay. This project is experimental, but seems to work pretty well!

The short-term goals of this project are to help discover the real world requirements of Fay and to invite bikeshedding over the fay-jquery API. That means that names and types may change in rapid and annoying ways until conventions settle down.

The one consistent convention in the library is that the jQuery object on which methods operate is the last parameter to every function. This allows simple monadic composition:

makeSquare :: JQuery -> Fay JQuery
makeSquare = addClass "square" >=>
             setWidth 400 >=>
             setHeight 400

main :: Fay ()
main = do
    makeSquare $ select "#elementToMakeSquare"
    return ()

Usage

Install:

cabal install fay-text fay-jquery

Compile your file:

fay --package fay-jquery,fay-text MyFile.hs

Supported API calls

This binding is a work in progress. We're adding calls by section of the jQuery docs. There is some overlap in the sections, but the following sections are (mostly) complete.

  • Ajax
  • Attributes
  • Core
  • CSS
  • Effects (Basic, Fading)
  • Manipulation
  • Traversing
  • Events

Still to do

  • Data
  • Deferred Object
  • Effects (Custom, Sliding)
  • Forms
  • Internals
  • Miscellaneous
  • Offset
  • Plugins
  • Properties
  • Utilities

Not Applicable

  • Selectors