Moved the Agents into their own repo. Kept the agent.pl just for reference

This commit is contained in:
Frank Harris 2025-09-11 13:27:32 -04:00
parent 22381be29a
commit 8680a02b13
18132 changed files with 0 additions and 2569420 deletions

View file

@ -1,16 +0,0 @@
$(document).ready(function() {
$('[href="?m=tickets&p=submitticket"]').addClass('btn').addClass('btn-primary').addClass('btn-sm');
$('.no_tickets').removeClass('no_tickets').addClass('alert').addClass('alert-danger');
$('.ticket_admin_response > td:nth-child(2)').each(function(){
$(this).replaceWith('<td><span class="label label-warning label-size">'+$(this).html()+'</span></td>');
});
$('.ticket_customer_response > td:nth-child(2)').each(function(){
$(this).replaceWith('<td><span class="label label-info label-size">'+$(this).html()+'</span></td>');
});
$('.ticket_closed > td:nth-child(2)').each(function(){
$(this).replaceWith('<td><span class="label label-danger label-size">'+$(this).html()+'</span></td>');
});
});