53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
/* ------------------------------------------------------------------------------
|
|
*
|
|
* # Inbox page
|
|
*
|
|
* Specific JS code additions for mail_list.html pages
|
|
*
|
|
* Version: 1.0
|
|
* Latest update: Dec 5, 2016
|
|
*
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
$(function() {
|
|
|
|
|
|
// Custom code
|
|
// ------------------------------
|
|
|
|
// Highlight row when checkbox is checked
|
|
$('.table-inbox').find('tr > td:first-child').find('input[type=checkbox]').on('change', function() {
|
|
if($(this).is(':checked')) {
|
|
$(this).parents('tr').addClass('warning');
|
|
}
|
|
else {
|
|
$(this).parents('tr').removeClass('warning');
|
|
}
|
|
});
|
|
|
|
// Grab first letter and insert to the icon
|
|
$(".table-inbox tr").each(function (i) {
|
|
|
|
// Title
|
|
var $title = $(this).find('.letter-icon-title'),
|
|
letter = $title.eq(0).text().charAt(0).toUpperCase();
|
|
|
|
// Icon
|
|
var $icon = $(this).find('.letter-icon');
|
|
$icon.eq(0).text(letter);
|
|
});
|
|
|
|
|
|
// Plugins
|
|
// ------------------------------
|
|
|
|
// Default initialization
|
|
$(".styled, .multiselect-container input").uniform({
|
|
radioClass: 'choice'
|
|
});
|
|
|
|
// Initialize Row link plugin
|
|
$('tbody.rowlink').rowlink();
|
|
|
|
});
|