No changes

This commit is contained in:
Frank Harris 2025-09-11 13:29:15 -04:00
parent 8680a02b13
commit b6b398f5bf
17374 changed files with 2475441 additions and 0 deletions

View file

@ -0,0 +1,32 @@
$(document).ready(function() {
$('.no_ticket_replies, .ticket_closed').removeClass('no_ticket_replies').addClass('alert').addClass('alert-danger');
$('[name="ticket_close"]').removeClass('btn-primary').addClass('btn-danger');
$('.ticket_reply_notice').addClass('btn').addClass('btn-primary');
$('.downloadAttachmentLink').addClass('label').addClass('label-default');
$('.divTableCell').each(function(){
$(this).replaceWith('<td>'+$(this).html()+'</td>');
});
$('.divTableRow').each(function(){
$(this).replaceWith('<tr>'+$(this).html()+'</tr>');
});
$('.divTableBody').each(function(){
$(this).replaceWith('<tbody>'+$(this).html()+'</tbody>');
});
$('.divTable').each(function(){
$(this).replaceWith('<table>'+$(this).html()+'</table>');
});
$('.attachment_header').each(function(){
$(this).replaceWith('<div class="attachment_header"><h3>'+$(this).html()+'</h3></div>');
});
$('.ticketErrorHolder').addClass('alert').addClass('alert-danger');
});
$(window).load(function(){
$('#errorHeader').replaceWith(function(){
return $("<strong />", {html: $(this).html()});
});
});