Added creation of a shortcut on the desktop

This commit is contained in:
Данил 2022-10-02 12:19:00 +03:00
parent d0496c5fdf
commit 3f51438c24
3 changed files with 107 additions and 0 deletions

View file

@ -0,0 +1,20 @@
let button = document.querySelector("#createLabelButton");
button.addEventListener("click", function() {
$.ajax({
url: "http://localhost:8080/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();
}
}
});
});