|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/nandedex/public_html/wp-content/plugins/live-news/admin/assets/js/ |
jQuery(document).ready(function($) {
remove_border_last_cell_chart();
//.group-trigger -> click - EVENT LISTENER
$('.group-trigger').click(function(){
//open and close the various sections of the chart area
var target = $(this).attr('data-trigger-target');
$('.' + target).toggle(0);
$(this).find('.expand-icon').toggleClass('arrow-down');
remove_border_last_cell_chart();
});
/*
Remove the bottom border on the cells of the last row of the chart section
*/
function remove_border_last_cell_chart(){
$('table.daext-form tr > *').css('border-bottom-width', '1px');
$('table.daext-form tr:visible:last > *').css('border-bottom-width', '0');
}
});