$(document).ready(function()
{
$('[href="?m=tickets&p=submitticket"]').addClass('btn btn-primary btn-sm').prepend('');
$('.main .ticket_closed').addClass('text-muted');
$('.main .ticket_closed td:nth-child(2)').html(''+$('.main .ticket_closed td:nth-child(2)').html()+'');
// check if current user is admin for correct response color
$.ajax({
cache: false,
async: true,
type: 'GET',
url: 'themes/AdminLTE/dist/php/settings.php?m=global&p=check&v=isadmin',
success: function(isadmin)
{
if(isadmin==1)
{
$('.main .ticket_admin_response td:nth-child(2)').html(''+$('.main .ticket_admin_response td:nth-child(2)').html()+'');
$('.main .ticket_customer_response td:nth-child(2)').html(''+$('.main .ticket_customer_response td:nth-child(2)').html()+'');
}else
{
$('.main .ticket_admin_response td:nth-child(2)').html(''+$('.main .ticket_admin_response td:nth-child(2)').html()+'');
$('.main .ticket_customer_response td:nth-child(2)').html(''+$('.main .ticket_customer_response td:nth-child(2)').html()+'');
}
}
});
$('.main .ticketRow a').prepend('');
});