Bootstrap Switch v3.3.2

We added a new design for the switches to look like the rest of the dashboard.

For more information please check Full Documentation


<!-- markup -->
<label>
  <input type="checkbox" data-toggle="switch" checked="" data-on-color="primary" data-off-color="primary">
  <span class="toggle"></span>
</label>
<br/>
<label>
  <input type="checkbox" data-toggle="switch" data-off-color="primary" data-on-color="primary">
  <span class="toggle"></span>
</label>
<!--   Activate regular switches -->
if($("[data-toggle='switch']").length != 0){
  $("[data-toggle='switch']").bootstrapSwitch();
}