mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2024-11-06 09:23:57 +03:00
20 lines
No EOL
795 B
JavaScript
20 lines
No EOL
795 B
JavaScript
let button = document.querySelector("#createLabelButton");
|
|
button.addEventListener("click", function() {
|
|
$.ajax({
|
|
url: "http://localhost:3000/api/create/label",
|
|
type: "POST",
|
|
success: function(data) {
|
|
if(data.status) {
|
|
$(".toast-body").text(data.message);
|
|
let toastLiveExample = document.getElementById('liveToast');
|
|
let toast = new bootstrap.Toast(toastLiveExample);
|
|
toast.show();
|
|
} else {
|
|
$(".toast-body").text("An error occurred while creating the label.");
|
|
let toastLiveExample = document.getElementById('liveToast');
|
|
let toast = new bootstrap.Toast(toastLiveExample);
|
|
toast.show();
|
|
}
|
|
}
|
|
});
|
|
}); |