mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-06 20:23:15 -05:00
15 lines
344 B
JavaScript
15 lines
344 B
JavaScript
$(function () {
|
|
$("[class='switch-checkbox']").bootstrapSwitch();
|
|
|
|
$('input[class="switch-checkbox"]').on('switchChange.bootstrapSwitch', function(event, state) {
|
|
var url = $(this).attr('url') + state;
|
|
var method = $(this).attr('method');
|
|
|
|
$.ajax({
|
|
url: url,
|
|
type: method,
|
|
dataType: 'script'
|
|
});
|
|
});
|
|
});
|