32 lines
852 B
32 lines
852 B
var ComponentsBootstrapSwitch = function () {
|
|
|
|
var handleBootstrapSwitch = function() {
|
|
|
|
$('.switch-radio1').on('switch-change', function () {
|
|
$('.switch-radio1').bootstrapSwitch('toggleRadioState');
|
|
});
|
|
|
|
// or
|
|
$('.switch-radio1').on('switch-change', function () {
|
|
$('.switch-radio1').bootstrapSwitch('toggleRadioStateAllowUncheck');
|
|
});
|
|
|
|
// or
|
|
$('.switch-radio1').on('switch-change', function () {
|
|
$('.switch-radio1').bootstrapSwitch('toggleRadioStateAllowUncheck', false);
|
|
});
|
|
|
|
}
|
|
|
|
return {
|
|
//main function to initiate the module
|
|
init: function () {
|
|
handleBootstrapSwitch();
|
|
}
|
|
};
|
|
|
|
}();
|
|
|
|
jQuery(document).ready(function() {
|
|
ComponentsBootstrapSwitch.init();
|
|
});
|