mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
14 lines
407 B
JavaScript
14 lines
407 B
JavaScript
$('#summaryModal').on('shown.bs.modal', function (e) {
|
|
// Perform AJAX request to get the summary
|
|
$.ajax({
|
|
url: 'post.php?ai_ticket_summary',
|
|
method: 'POST',
|
|
data: { ticket_id: <?php echo $ticket_id; ?> },
|
|
success: function(response) {
|
|
$('#summaryContent').html(response);
|
|
},
|
|
error: function() {
|
|
$('#summaryContent').html('Error generating summary.');
|
|
}
|
|
});
|
|
}); |