Closed dstreet26 closed 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" ]
Button.disabled is:
The example on http://elm-bootstrap.info/button
Says that this is valid:
When it's not. This is the correct syntax: