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 #16 from TheBizzle/patch-1
Browse files Browse the repository at this point in the history
Avoid duplicate labels in `ready`
  • Loading branch information
paf31 committed Nov 16, 2014
2 parents 0806a7c + 4c0e870 commit e05fef2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -51,7 +51,7 @@

preventDefault :: forall eff. JQueryEvent -> Eff (dom :: DOM | eff) Unit

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

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

Expand Down
2 changes: 1 addition & 1 deletion src/Control/Monad/JQuery.purs
Expand Up @@ -18,7 +18,7 @@ foreign import ready
jQuery(document).ready(func);
};
}
""" :: forall eff a. Eff eff a -> Eff (dom :: DOM | eff) JQuery
""" :: forall eff a. Eff (dom :: DOM | eff) a -> Eff (dom :: DOM | eff) JQuery

-- Wrapper function for jQuery selection $('..')
foreign import select
Expand Down

0 comments on commit e05fef2

Please sign in to comment.