forked from Hay1tsme/artemis
11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
$(document).ready(function () {
|
|
$('#exportBtn').click(function () {
|
|
window.location = "/game/idac/profile/export.get";
|
|
|
|
// appendAlert('Successfully exported the profile', 'success');
|
|
|
|
// Close the modal on success
|
|
$('#export').modal('hide');
|
|
});
|
|
});
|