fay-hsx 0.1.0 → 0.2.0
raw patch · 2 files changed
+3/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
- HTML: type Text = String
+ HTML: fromStringLit :: String -> String
Files
- fay-hsx.cabal +1/−1
- src/HTML.hs +2/−1
fay-hsx.cabal view
@@ -1,5 +1,5 @@ name: fay-hsx-version: 0.1.0+version: 0.2.0 synopsis: Clientside HTML generation for fay. description: This library allows you to write fay code that generates HTML in the browser. It is compatible with the code generated by hsx2hs. homepage: http://www.happstack.com/
src/HTML.hs view
@@ -10,7 +10,8 @@ import JQuery import FFI -type Text = String+fromStringLit :: String -> String+fromStringLit = id data Attr a b = a := b