osem-fcy/app/assets/javascripts/osem-switch.js

15 lines
344 B
JavaScript
Raw Normal View History

$(function () {
2015-06-14 22:28:33 +03:00
$("[class='switch-checkbox']").bootstrapSwitch();
2015-06-14 22:28:33 +03:00
$('input[class="switch-checkbox"]').on('switchChange.bootstrapSwitch', function(event, state) {
var url = $(this).attr('url') + state;
var method = $(this).attr('method');
2015-06-14 22:28:33 +03:00
$.ajax({
url: url,
type: method,
dataType: 'script'
});
});
});