ブートストラップスイッチv3.3.2 v3.3.2 - プロ 成分

私たちは、ダッシュボードの他の部分のように見えるようにスイッチのための新しいデザインを追加しました。

詳しくは** [完全なドキュメント](https://github.com/Bttstrp/bootstrap-switch/){:target = “_blank”}をご覧ください。**

<div class="togglebutton">
  <label>
    <input type="checkbox" checked="">
      <span class="toggle"></span>
      Toggle is on
  </label>
</div>
<div class="togglebutton">
  <label>
    <input type="checkbox">
      <span class="toggle"></span>
        Toggle is off
  </label>
</div>
$('.bootstrap-switch').each(function(){
    $this = $(this);
    data_on_label = $this.data('on-label') || '';
    data_off_label = $this.data('off-label') || '';

    $this.bootstrapSwitch({
        onText: data_on_label,
        offText: data_off_label
    });
});