Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
Merge pull request #15 from purescript-contrib/rows
Browse files Browse the repository at this point in the history
Avoid duplicate labels in rows
  • Loading branch information
paf31 committed Nov 11, 2014
2 parents 89e552a + 4de878a commit 0806a7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -43,9 +43,9 @@

hasClass :: forall eff. String -> JQuery -> Eff (dom :: DOM | eff) Boolean

on :: forall eff a. String -> (JQueryEvent -> JQuery -> Eff eff a) -> JQuery -> Eff (dom :: DOM | eff) JQuery
on :: forall eff a. String -> (JQueryEvent -> JQuery -> Eff (dom :: DOM | eff) a) -> JQuery -> Eff (dom :: DOM | eff) JQuery

on' :: forall eff a. String -> String -> (JQueryEvent -> JQuery -> Eff eff a) -> JQuery -> Eff (dom :: DOM | eff) JQuery
on' :: forall eff a. String -> String -> (JQueryEvent -> JQuery -> Eff (dom :: DOM | eff) a) -> JQuery -> Eff (dom :: DOM | eff) JQuery

parent :: forall eff. JQuery -> Eff (dom :: DOM | eff) JQuery

Expand Down
4 changes: 2 additions & 2 deletions src/Control/Monad/JQuery.purs
Expand Up @@ -321,7 +321,7 @@ foreign import on
};
};
}
""" :: forall eff a. String -> (JQueryEvent -> JQuery -> Eff eff a) -> JQuery ->
""" :: forall eff a. String -> (JQueryEvent -> JQuery -> Eff (dom :: DOM | eff) a) -> JQuery ->
Eff (dom :: DOM | eff) JQuery

-- Register an event handler
Expand All @@ -340,7 +340,7 @@ foreign import on'
};
};
}
""" :: forall eff a. String -> String -> (JQueryEvent -> JQuery -> Eff eff a) -> JQuery ->
""" :: forall eff a. String -> String -> (JQueryEvent -> JQuery -> Eff (dom :: DOM | eff) a) -> JQuery ->
Eff (dom :: DOM | eff) JQuery

foreign import preventDefault
Expand Down

0 comments on commit 0806a7c

Please sign in to comment.