You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
429 B
12 lines
429 B
$(document).on('turbolinks:load', function(){
|
|
$(document).on('click', '.batch-all-check-box', function(){
|
|
var $checkAll = $(this);
|
|
|
|
$('.batch-check-box').prop('checked', $checkAll.is(':checked'));
|
|
})
|
|
|
|
$(document).on('click', '.batch-check-box', function(){
|
|
var allChecked = $('.batch-check-box:checked').length === $('.batch-check-box').length
|
|
$('.batch-all-check-box').prop('checked', allChecked);
|
|
})
|
|
}); |