mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 12:14:03 +00:00
17 lines
437 B
JavaScript
17 lines
437 B
JavaScript
|
|
$(function () {
|
||
|
|
$(document).ready(function() {
|
||
|
|
$("[class='switch-checkbox']").bootstrapSwitch();
|
||
|
|
|
||
|
|
$('input[class="switch-checkbox"]').on('switchChange.bootstrapSwitch', function(event, state) {
|
||
|
|
url = "/admin/conference/" + this.name + "/events/" + this.value
|
||
|
|
|
||
|
|
$.ajax({
|
||
|
|
url: url,
|
||
|
|
type: 'PATCH',
|
||
|
|
data: { event: { is_highlight: state } },
|
||
|
|
dataType: 'script'
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|