rundis / elm-bootstrap.info

User documentation for Elm Bootstrap
BSD 3-Clause "New" or "Revised" License
11 stars 19 forks source link

Documentation wrong for Disabled Buttons #15

Closed dstreet26 closed 7 years ago

dstreet26 commented 7 years ago

Button.disabled is:

disabled : Bool -> Option msg

The example on http://elm-bootstrap.info/button

Says that this is valid:

Button.button [ Button.primary, Button.disabled ] [ text "Button" ]

When it's not. This is the correct syntax:

Button.button [ Button.primary, Button.disabled True ] [ text "Button" ]