first commit

This commit is contained in:
dev-chiefworks
2022-05-31 16:21:53 -04:00
commit f76abffdcd
5978 changed files with 1078901 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
/* ------------------------------------------------------------------------------
*
* # Inbox page - Reading
*
* Specific JS code additions for mail_list_read.html page
*
* Version: 1.0
* Latest update: Dec 5, 2016
*
* ---------------------------------------------------------------------------- */
$(function() {
// Grab first letter from sender name and add it to avatar
// ------------------------------
// Title
var $title = $('.letter-icon-title'),
letter = $title.eq(0).text().charAt(0).toUpperCase();
// Icon
var $icon = $title.parent().parent().find('.letter-icon');
$icon.eq(0).text(letter);
});