Created
May 27, 2015 17:33
-
-
Save anonymous/64052620fcd77dd74349 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clearErrors = traverse ((>>= maybeClear) <<< fieldErrorNode) allFields | |
where | |
maybeClear = maybe (return unit) clear | |
clear node = setInnerHTML "" node >>= \_ -> return unit | |
allFields = [ FirstNameField | |
, LastNameField | |
, StreetField | |
, CityField | |
, StateField | |
, PhoneField HomePhone | |
, PhoneField CellPhone | |
, PhoneField WorkPhone | |
, PhoneField OtherPhone | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment