vsn4ik / bootstrap-checkbox

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

Documentation incorrect data-off-title should be data-off-label #18

Open howdu opened 9 years ago

howdu commented 9 years ago
<input type="checkbox" data-off-title="No" data-on-title="Yes">

Also be nice if there was a way of controling the size via data attribute. At the moment I have to do this:

$this.checkboxpicker({
  defaultClass: 'btn-default btn-sm',
  offClass: 'btn-danger btn-sm',
  onClass: 'btn-info btn-sm'
});