Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
/// <reference path="bootstrap-switch.d.ts" /> 

$(document).ready(function () {
  $('.delete').bootstrapSwitch({
    onText: '<span class="glyphicon glyphicon-trash" aria-hidden="true"></span>',
    offText: '<span class="glyphicon glyphicon-trash" aria-hidden="true"></span>',
    offColor: 'default',
    onColor: 'danger',
    onSwitchChange: function (event, state: boolean) {
      console.log(state);
    }
  });
});