ghcjs-perch 0.3.3 → 0.3.3.1
raw patch · 2 files changed
+7/−2 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
+ GHCJS.Perch: Callback :: a -> Callback a
+ GHCJS.Perch: data Callback a
+ GHCJS.Perch: notImplemented :: a
+ GHCJS.Perch: pack :: a
- GHCJS.Perch: attr :: PerchM a -> (PropId, JSString) -> PerchM a
+ GHCJS.Perch: attr :: forall a. PerchM a -> (PropId, JSString) -> PerchM a
Files
- ghcjs-perch.cabal +6/−1
- src/Internal/FFI.hs +1/−1
ghcjs-perch.cabal view
@@ -3,7 +3,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.3.3+version: 0.3.3.1 synopsis: GHCJS version of Perch library. @@ -55,3 +55,8 @@ if impl(ghcjs >= 0.1) build-depends: ghcjs-base+++source-repository head+ type: git+ location: https://github.com/geraldus/ghcjs-perch.git
src/Internal/FFI.hs view
@@ -39,7 +39,7 @@ js_isInCurrentDOM :: JSVal -> IO Bool -foreign import javascript unsafe "$1.parentNode()"+foreign import javascript unsafe "$1.parentNode" js_parentNode :: JSVal -> IO JSVal foreign import javascript unsafe "$1.appendChild($2)"