vb_book/public/assets/js/pages/inbox.js
2024-10-29 15:37:48 +05:30

15 lines
414 B
JavaScript
Executable File

/*
Template Name: Minton - Responsive Bootstrap 4 Admin Dashboard
Author: CoderThemes
Website: https://coderthemes.com/
Contact: support@coderthemes.com
File: Inbox init js
*/
$('input:checkbox').change(function(){
if($(this).is(":checked")) {
$(this).parent().parent().parent().addClass("mail-selected");
} else {
$(this).parent().parent().parent().removeClass("mail-selected");
}
});