vsn4ik / bootstrap-checkbox

A checkbox component based on Bootstrap framework.

Home Page:https://vsn4ik.github.io/bootstrap-checkbox/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bootstrap 4 compitibility

snimavat opened this issue · comments

Is there any time frame to make the project compitible with latest bootstrap 4 .

Full compitibility in v.1.5.0 with

$(':checkbox').checkboxpicker({
  offCls: 'btn-secondary',
  onCls: 'btn-secondary',
  ...
});

Took me ages to find this. Might want to add it into the docs ! Thanks for your hard work.

Edit: oh, you'll want to use btn-outline-secondary to replicate the look correctly.

$(':checkbox').checkboxpicker({
        offCls: 'btn-outline-secondary',
        onCls: 'btn-outline-secondary',
  ...
});