Close
The Bootstrap
close
component, implemented in Ruby. Use it like any other matestack component in your apps, pages and components. It offers customizable options to simply achieve what is possible in bootstrap with this component. See below for more information about the possible options.Returns a bootstrap close button for dismissing content like modals and alerts. Also the close is customizable with the following options.
Optional options
dismiss
- specify which component the close button is used for- Html attributes - all w3c confirm html attributes for div's can be set via options and will be added to the surrounding close div.
bs_close
returns
<button type="button" class="close" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
bs_close dismiss: "modal"
returns
<button type="button" class="close" aria-label="Close" data-dismiss="modal">
<span aria-hidden="true">×</span>
</button>
Last modified 1yr ago