DefinitelyTyped/bootstrap-switch/bootstrap-switch-tests.ts
2016-05-10 12:22:25 -07:00

25 lines
447 B
TypeScript

/// <reference types="jquery"/>
function test_cases() {
$('#switch').bootstrapSwitch();
$('#switch').bootstrapSwitch({
state: false
});
$('#switch').bootstrapSwitch({
state: false,
disabled: true
});
//var mySwitch = $('#switch').get(0);
//mySwitch.toggleAnimate();
$('#switch').bootstrapSwitch('state', true, true);
$('#switch').on('switchChange.bootstrapSwitch', (event) => {
console.log($(event.target).val());
});
}