7 lines
194 B
JavaScript
7 lines
194 B
JavaScript
|
$(document).on('click', '.list-remove', function(){
|
||
|
$('#delete_all').submit();
|
||
|
});
|
||
|
|
||
|
$(document).on('click', '#check_all', function(){
|
||
|
$('.checkbox_in_list').attr("checked", this.checked);
|
||
|
});
|