OpenSlides/openslides/participant/static/javascript/participant.js

20 lines
580 B
JavaScript
Raw Normal View History

$(function() {
$('.status_link').click(function(event) {
event.preventDefault();
link = $(this);
$.ajax({
type: 'GET',
url: link.attr('href'),
dataType: 'json',
success: function(data) {
if (data.active) {
newclass = 'active';
} else {
newclass = 'inactive';
}
link.removeClass('active inactive').addClass(newclass);
link.attr('href', data.link);
}
});
});
});