Files
artemis/titles/idac/templates/js/idac_scripts.js
2024-01-09 15:54:34 -05:00

10 lines
278 B
JavaScript

$(document).ready(function () {
$('#exportBtn').click(function () {
window.location = "/game/idac/export";
// appendAlert('Successfully exported the profile', 'success');
// Close the modal on success
$('#export').modal('hide');
});
});