vsn4ik / bootstrap-checkbox

A checkbox component based on Bootstrap framework.
https://vsn4ik.github.io/bootstrap-checkbox/
MIT License
213 stars 61 forks source link

Add support for Bootstraps button sizes. #9

Closed MojoDK closed 9 years ago

MojoDK commented 9 years ago

Let the end user control what the size of the button should be.

Eg. I changed it to small... this.$buttons = $('').addClass('btn btn-xs');

This should be set in options.

vsn4ik commented 9 years ago

Use:

<input type="checkbox" data-style="btn-group-xs">

or

$(':checkbox').checkboxpicker({
  style: 'btn-group-xs'
});

Also added example in docs. Thank you for your issue!